[<prev] [next>] [day] [month] [year] [list]
Message-ID: <44BD539C.6030606@oracle.com>
Date: Tue, 18 Jul 2006 14:33:16 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: linux-pci@...ey.karlin.mff.cuni.cz,
lkml <linux-kernel@...r.kernel.org>, gregkh@...e.de
Subject: [PATCH 3/3] pci/search: EXPORTs cannot be __devinit
From: Randy Dunlap <rdunlap@...otime.net>
EXPORTed symbols cannot be __init/__devinit.
Signed-off-by: Randy Dunlap <rdunlap@...otime.net>
---
drivers/pci/search.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-2618-rc2.orig/drivers/pci/search.c
+++ linux-2618-rc2/drivers/pci/search.c
@@ -41,7 +41,7 @@ pci_do_find_bus(struct pci_bus* bus, uns
* in the global list of PCI buses. If the bus is found, a pointer to its
* data structure is returned. If no bus is found, %NULL is returned.
*/
-struct pci_bus * __devinit pci_find_bus(int domain, int busnr)
+struct pci_bus * pci_find_bus(int domain, int busnr)
{
struct pci_bus *bus = NULL;
struct pci_bus *tmp_bus;
-
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