diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2011-06-21 14:57:16 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-22 16:09:58 -0400 |
commit | cd15598707aff52da4302d9b6a3fc878bca27383 (patch) | |
tree | ecf5e01003366373cc4873e56d6ef72fd2592ba3 /drivers/net/b44.c | |
parent | 999a7a88f1b062af5617fa55df317446af86a3da (diff) |
ssb: add __devinit to some functions
Two functions in ssb are using register_pci_controller() which is
__devinit. The functions ssb_pcicore_init_hostmode() and
ssb_gige_probe() should also be __devinit.
This fixes the following warning:
WARNING: vmlinux.o(.text+0x2727b8): Section mismatch in reference from the function ssb_pcicore_init_hostmode() to the function .devinit.text:register_pci_controller()
The function ssb_pcicore_init_hostmode() references
the function __devinit register_pci_controller().
This is often because ssb_pcicore_init_hostmode lacks a __devinit
annotation or the annotation of register_pci_controller is wrong.
WARNING: vmlinux.o(.text+0x273398): Section mismatch in reference from the function ssb_gige_probe() to the function .devinit.text:register_pci_controller()
The function ssb_gige_probe() references
the function __devinit register_pci_controller().
This is often because ssb_gige_probe lacks a __devinit
annotation or the annotation of register_pci_controller is wrong.
Reported-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/b44.c')
-rw-r--r-- | drivers/net/b44.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/b44.c b/drivers/net/b44.c index a69331e06b8d..91f7e6a0d4f9 100644 --- a/drivers/net/b44.c +++ b/drivers/net/b44.c | |||
@@ -2335,7 +2335,7 @@ static struct ssb_driver b44_ssb_driver = { | |||
2335 | .resume = b44_resume, | 2335 | .resume = b44_resume, |
2336 | }; | 2336 | }; |
2337 | 2337 | ||
2338 | static inline int b44_pci_init(void) | 2338 | static inline int __init b44_pci_init(void) |
2339 | { | 2339 | { |
2340 | int err = 0; | 2340 | int err = 0; |
2341 | #ifdef CONFIG_B44_PCI | 2341 | #ifdef CONFIG_B44_PCI |
@@ -2344,7 +2344,7 @@ static inline int b44_pci_init(void) | |||
2344 | return err; | 2344 | return err; |
2345 | } | 2345 | } |
2346 | 2346 | ||
2347 | static inline void b44_pci_exit(void) | 2347 | static inline void __exit b44_pci_exit(void) |
2348 | { | 2348 | { |
2349 | #ifdef CONFIG_B44_PCI | 2349 | #ifdef CONFIG_B44_PCI |
2350 | ssb_pcihost_unregister(&b44_pci_driver); | 2350 | ssb_pcihost_unregister(&b44_pci_driver); |