diff options
Diffstat (limited to 'arch/arm/mach-pxa/gumstix.c')
-rw-r--r-- | arch/arm/mach-pxa/gumstix.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/gumstix.c b/arch/arm/mach-pxa/gumstix.c index d8962a0fb98d..14d5103dafc9 100644 --- a/arch/arm/mach-pxa/gumstix.c +++ b/arch/arm/mach-pxa/gumstix.c | |||
@@ -193,6 +193,20 @@ static unsigned long gumstix_pin_config[] __initdata = { | |||
193 | GPIO16_GPIO, | 193 | GPIO16_GPIO, |
194 | }; | 194 | }; |
195 | 195 | ||
196 | int __attribute__((weak)) am200_init(void) | ||
197 | { | ||
198 | return 0; | ||
199 | } | ||
200 | |||
201 | static void __init carrier_board_init(void) | ||
202 | { | ||
203 | /* | ||
204 | * put carrier/expansion board init here if | ||
205 | * they cannot be detected programatically | ||
206 | */ | ||
207 | am200_init(); | ||
208 | } | ||
209 | |||
196 | static void __init gumstix_init(void) | 210 | static void __init gumstix_init(void) |
197 | { | 211 | { |
198 | pxa2xx_mfp_config(ARRAY_AND_SIZE(gumstix_pin_config)); | 212 | pxa2xx_mfp_config(ARRAY_AND_SIZE(gumstix_pin_config)); |
@@ -201,6 +215,7 @@ static void __init gumstix_init(void) | |||
201 | gumstix_udc_init(); | 215 | gumstix_udc_init(); |
202 | gumstix_mmc_init(); | 216 | gumstix_mmc_init(); |
203 | (void) platform_add_devices(devices, ARRAY_SIZE(devices)); | 217 | (void) platform_add_devices(devices, ARRAY_SIZE(devices)); |
218 | carrier_board_init(); | ||
204 | } | 219 | } |
205 | 220 | ||
206 | MACHINE_START(GUMSTIX, "Gumstix") | 221 | MACHINE_START(GUMSTIX, "Gumstix") |