]> git.baikalelectronics.ru Git - kernel.git/commit
via-velocity: do not use PCI resources before pci_enable_device()
authorKulikov Vasiliy <segooon@gmail.com>
Tue, 3 Aug 2010 05:43:18 +0000 (05:43 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Aug 2010 23:18:03 +0000 (16:18 -0700)
commit32331939c0376de018ad87b485c32dcd7f9faf33
treecc8c3c459a82d71c1c15a056961b23f81e540e6e
parent31a93304b2a5ed7ab6c76dabf7f01c706e719233
via-velocity: 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>
drivers/net/via-velocity.c