diff options
author | Kulikov Vasiliy <segooon@gmail.com> | 2010-08-03 07:43:11 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-05 01:18:02 +0200 |
commit | 7aaaaa1e44b2a4047dfe05f304a5090eb995cf44 (patch) | |
tree | e8acddbddcfefd6b698c9061343b82baf0205d84 /drivers/net/cxgb4vf | |
parent | Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jiko... (diff) | |
download | linux-7aaaaa1e44b2a4047dfe05f304a5090eb995cf44.tar.xz linux-7aaaaa1e44b2a4047dfe05f304a5090eb995cf44.zip |
cxgb3: do not use PCI resources before pci_enable_device()
IRQ and resource[] may not have correct values until
after PCI hotplug setup occurs at pci_enable_device() time.
The semantic match that finds this problem is as follows:
// <smpl>
@@
identifier x;
identifier request ~= "pci_request.*|pci_resource.*";
@@
(
* x->irq
|
* x->resource
|
* request(x, ...)
)
...
*pci_enable_device(x)
// </smpl>
Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cxgb4vf')
0 files changed, 0 insertions, 0 deletions