I was looking at the following section error:

<--  snip  -->

WARNING: drivers/built-in.o - Section mismatch: reference to 
.init.text:eisa_root_register from .text between 'pci_eisa_init' (at offset 
0xabf670) and 'virtual_eisa_release'

<--  snip  -->

AFAIK a PCI to EISA bridge isn't anything hotpluggable, so 
pci_eisa_init() can become __init.

Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]>

---
--- linux-2.6.21-rc4-mm1/drivers/eisa/pci_eisa.c.old    2007-03-25 
15:51:01.000000000 +0200
+++ linux-2.6.21-rc4-mm1/drivers/eisa/pci_eisa.c        2007-03-25 
15:51:17.000000000 +0200
@@ -19,8 +19,8 @@
 /* There is only *one* pci_eisa device per machine, right ? */
 static struct eisa_root_device pci_eisa_root;
 
-static int __devinit pci_eisa_init (struct pci_dev *pdev,
-                                   const struct pci_device_id *ent)
+static int __init pci_eisa_init(struct pci_dev *pdev,
+                               const struct pci_device_id *ent)
 {
        int rc;
 

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

Reply via email to