[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080130200219.GQ29368@does.not.exist>
Date: Wed, 30 Jan 2008 22:02:19 +0200
From: Adrian Bunk <bunk@...nel.org>
To: gregkh@...e.de
Cc: linux-pci@...ey.karlin.mff.cuni.cz, linux-kernel@...r.kernel.org
Subject: [2.6 patch] pci_setup_bridge() mustn't be __devinit
This patch fixes the following section mismatch:
<-- snip -->
...
WARNING: drivers/pci/built-in.o(.text+0x28ee9): Section mismatch in reference from the function pci_bus_assign_resources() to the function .devinit.text:pci_setup_bridge()
...
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@...nel.org>
---
799449b90fcd191ae39cd6b6147ce337ad8670ea
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c
index 2cc957d..85e7971 100644
--- a/drivers/pci/setup-bus.c
+++ b/drivers/pci/setup-bus.c
@@ -140,8 +140,7 @@ EXPORT_SYMBOL(pci_setup_cardbus);
config space writes, so it's quite possible that an I/O window of
the bridge will have some undesirable address (e.g. 0) after the
first write. Ditto 64-bit prefetchable MMIO. */
-static void __devinit
-pci_setup_bridge(struct pci_bus *bus)
+static void pci_setup_bridge(struct pci_bus *bus)
{
struct pci_dev *bridge = bus->self;
struct pci_bus_region region;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists