diff options
Diffstat (limited to 'arch/arm/mach-pxa/gumstix.c')
-rw-r--r-- | arch/arm/mach-pxa/gumstix.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/arch/arm/mach-pxa/gumstix.c b/arch/arm/mach-pxa/gumstix.c index e296ce11658c..ca9912ea78d9 100644 --- a/arch/arm/mach-pxa/gumstix.c +++ b/arch/arm/mach-pxa/gumstix.c | |||
@@ -38,14 +38,12 @@ | |||
38 | #include <asm/mach/map.h> | 38 | #include <asm/mach/map.h> |
39 | #include <asm/mach/irq.h> | 39 | #include <asm/mach/irq.h> |
40 | #include <asm/mach/flash.h> | 40 | #include <asm/mach/flash.h> |
41 | |||
42 | #include <mach/pxa25x.h> | ||
41 | #include <mach/mmc.h> | 43 | #include <mach/mmc.h> |
42 | #include <mach/udc.h> | 44 | #include <mach/udc.h> |
43 | #include <mach/gumstix.h> | 45 | #include <mach/gumstix.h> |
44 | 46 | ||
45 | #include <mach/pxa-regs.h> | ||
46 | #include <mach/pxa2xx-regs.h> | ||
47 | #include <mach/mfp-pxa25x.h> | ||
48 | |||
49 | #include "generic.h" | 47 | #include "generic.h" |
50 | 48 | ||
51 | static struct resource flash_resource = { | 49 | static struct resource flash_resource = { |
@@ -191,6 +189,11 @@ int __attribute__((weak)) am200_init(void) | |||
191 | return 0; | 189 | return 0; |
192 | } | 190 | } |
193 | 191 | ||
192 | int __attribute__((weak)) am300_init(void) | ||
193 | { | ||
194 | return 0; | ||
195 | } | ||
196 | |||
194 | static void __init carrier_board_init(void) | 197 | static void __init carrier_board_init(void) |
195 | { | 198 | { |
196 | /* | 199 | /* |
@@ -198,6 +201,7 @@ static void __init carrier_board_init(void) | |||
198 | * they cannot be detected programatically | 201 | * they cannot be detected programatically |
199 | */ | 202 | */ |
200 | am200_init(); | 203 | am200_init(); |
204 | am300_init(); | ||
201 | } | 205 | } |
202 | 206 | ||
203 | static void __init gumstix_init(void) | 207 | static void __init gumstix_init(void) |