diff options
| author | Arnaud Lacombe <lacombar@gmail.com> | 2011-07-25 20:13:04 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-25 23:57:14 -0400 |
| commit | 005bdad7b80ac017ca21d795639d4214b9844a84 (patch) | |
| tree | 0a34db88bbed36794984bd2c27e4f5ea3d6400ad /drivers/eisa | |
| parent | b9d4f426689765d1e066913f6872c8d59e0f2ac9 (diff) | |
eisa/pci_eisa.c: fix section mismatch
Fixes
WARNING: vmlinux.o(.data+0x15d3ac): Section mismatch in reference from the variable pci_eisa_driver to the function .init.text:pci_eisa_init()
The variable pci_eisa_driver references the function __init pci_eisa_init()
If the reference is valid then annotate the variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/eisa')
| -rw-r--r-- | drivers/eisa/pci_eisa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/eisa/pci_eisa.c b/drivers/eisa/pci_eisa.c index 0dd0f633b18d..30da70d06a6d 100644 --- a/drivers/eisa/pci_eisa.c +++ b/drivers/eisa/pci_eisa.c | |||
| @@ -45,13 +45,13 @@ static int __init pci_eisa_init(struct pci_dev *pdev, | |||
| 45 | return 0; | 45 | return 0; |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | static struct pci_device_id pci_eisa_pci_tbl[] = { | 48 | static struct pci_device_id __initdata pci_eisa_pci_tbl[] = { |
| 49 | { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, | 49 | { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
| 50 | PCI_CLASS_BRIDGE_EISA << 8, 0xffff00, 0 }, | 50 | PCI_CLASS_BRIDGE_EISA << 8, 0xffff00, 0 }, |
| 51 | { 0, } | 51 | { 0, } |
| 52 | }; | 52 | }; |
| 53 | 53 | ||
| 54 | static struct pci_driver pci_eisa_driver = { | 54 | static struct pci_driver __initdata pci_eisa_driver = { |
| 55 | .name = "pci_eisa", | 55 | .name = "pci_eisa", |
| 56 | .id_table = pci_eisa_pci_tbl, | 56 | .id_table = pci_eisa_pci_tbl, |
| 57 | .probe = pci_eisa_init, | 57 | .probe = pci_eisa_init, |
