From: Kulikov Vasiliy Date: Tue, 3 Aug 2010 15:43:22 +0000 (+0400) Subject: rt2x00: do not use PCI resources before pci_enable_device() X-Git-Tag: v2.6.36-rc1~305^2~11^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47cb905d6b1f46bf403998f4838baa3f3b597391;p=pandora-kernel.git rt2x00: 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: // @@ identifier x; identifier request ~= "pci_request.*|pci_resource.*"; @@ ( * x->irq | * x->resource | * request(x, ...) ) ... *pci_enable_device(x) // Signed-off-by: Kulikov Vasiliy Acked-by: Gertjan van Wingerde Acked-by: Ivo van Doorn Signed-off-by: John W. Linville --- Reading git-diff-tree failed