diff options
author | Kristoffer Ericson <kristoffer.ericson@gmail.com> | 2008-02-03 16:08:10 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-02-04 08:14:07 -0500 |
commit | 85e6c7a7dbdb18a93846073a7f01369e91665c53 (patch) | |
tree | dcdc4edf839f9ed8fa45f9575407618f1b63e272 /arch/arm/mach-sa1100 | |
parent | 66a2c077c36ee5c56e77ba3757702c4464011da6 (diff) |
[ARM] 4810/1: - Fix 'section mismatch' building warnings
Warning message :
WARNING: vmlinux.o(.text+0x9afc): Section mismatch: reference to .init.text:sa1110_mb_enable (between 'sa1111_probe' and 'sa1111_remove')
WARNING: vmlinux.o(.text+0x13b1ac): Section mismatch: reference to .init.text:pcmcia_jornada720_init (between 'pcmcia_probe' and 'pcmcia_remove')
* fixes the 'section mismatch' building warnings for target sa1100. Solution is __init -> __devinit. Thanks to Randy Dunlap for pointing out the solution.
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-sa1100')
-rw-r--r-- | arch/arm/mach-sa1100/generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c index 9e13c8358ea7..5c84c604ed86 100644 --- a/arch/arm/mach-sa1100/generic.c +++ b/arch/arm/mach-sa1100/generic.c | |||
@@ -470,7 +470,7 @@ void __init sa1110_mb_disable(void) | |||
470 | * If the system is going to use the SA-1111 DMA engines, set up | 470 | * If the system is going to use the SA-1111 DMA engines, set up |
471 | * the memory bus request/grant pins. | 471 | * the memory bus request/grant pins. |
472 | */ | 472 | */ |
473 | void __init sa1110_mb_enable(void) | 473 | void __devinit sa1110_mb_enable(void) |
474 | { | 474 | { |
475 | unsigned long flags; | 475 | unsigned long flags; |
476 | 476 | ||