[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>

authored by Kristoffer Ericson and committed by Russell King 85e6c7a7 66a2c077

+2 -2
+1 -1
arch/arm/mach-sa1100/generic.c
··· 470 470 * If the system is going to use the SA-1111 DMA engines, set up 471 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 475 unsigned long flags; 476 476
+1 -1
drivers/pcmcia/sa1100_jornada720.c
··· 101 101 .socket_suspend = sa1111_pcmcia_socket_suspend, 102 102 }; 103 103 104 - int __init pcmcia_jornada720_init(struct device *dev) 104 + int __devinit pcmcia_jornada720_init(struct device *dev) 105 105 { 106 106 int ret = -ENODEV; 107 107