[2.6 patch] pci_scan_device() mustn't be __devinit

From: Adrian Bunk
Date: Wed Jan 30 2008 - 15:05:41 EST


This patch fixes the following section mismatch:

<-- snip -->

...
WARNING: drivers/pci/built-in.o(.text+0x150f): Section mismatch in reference from the function pci_scan_single_device() to the function .devinit.text:pci_scan_device()
...

<-- snip -->

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxxx>

---
d5abdec38c49b44c9ba37c97f2f31f2c2fd19037
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index 0ed050a..2533b69 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -873,8 +873,7 @@ EXPORT_SYMBOL(alloc_pci_dev);
* Read the config data for a PCI device, sanity-check it
* and fill in the dev structure...
*/
-static struct pci_dev * __devinit
-pci_scan_device(struct pci_bus *bus, int devfn)
+static struct pci_dev *pci_scan_device(struct pci_bus *bus, int devfn)
{
struct pci_dev *dev;
u32 l;

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/