Commit 74b9a297866d0416edd0be5014cb0810de049c6a
Committed by
Linus Torvalds
1 parent
d62ac21aa0
Exists in
master
and in
39 other branches
[PATCH] drivers/eisa/pci_eisa.c:pci_eisa_init() should be init
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' AFAIK a PCI to EISA bridge isn't anything hotpluggable, so pci_eisa_init() can become __init. Signed-off-by: Adrian Bunk <bunk@stusta.de> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
drivers/eisa/pci_eisa.c
... | ... | @@ -19,8 +19,8 @@ |
19 | 19 | /* There is only *one* pci_eisa device per machine, right ? */ |
20 | 20 | static struct eisa_root_device pci_eisa_root; |
21 | 21 | |
22 | -static int __devinit pci_eisa_init (struct pci_dev *pdev, | |
23 | - const struct pci_device_id *ent) | |
22 | +static int __init pci_eisa_init(struct pci_dev *pdev, | |
23 | + const struct pci_device_id *ent) | |
24 | 24 | { |
25 | 25 | int rc; |
26 | 26 |