agp: efficeon-agp: do not use PCI resources before pci_enable_device()
authorKulikov Vasiliy <segooon@gmail.com>
Tue, 3 Aug 2010 15:42:30 +0000 (19:42 +0400)
committerDave Airlie <airlied@redhat.com>
Thu, 5 Aug 2010 02:28:21 +0000 (12:28 +1000)
commit46cfc58a77de5fc8385ad87077f4dc14633e57a7
tree43f85886cea7113741f9bb6cd1cf5fa3001f12e5
parent58374713c9dfb4d231f8c56cac089f6fbdedc2ec
agp: efficeon-agp: 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: Dave Airlie <airlied@redhat.com>
drivers/char/agp/efficeon-agp.c