diff options
author | Jaya Kumar <jayakumar.lkml@gmail.com> | 2009-01-01 11:51:01 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-02-10 06:28:00 -0500 |
commit | 4ce255c1420dd7c4b97ad4dabd13fa5d862ad700 (patch) | |
tree | 7dadb8821220e58ea31f29d1c96d040b98688983 /arch/arm/mach-pxa/gumstix.c | |
parent | 0d4ff4df341208b1b75e01feca27301c0dcbf490 (diff) |
[ARM] 5354/1: mach-pxa: add AM300 platform driver v3
This patch adds support for the AM300 platform driver which uses the
E-Ink broadsheetfb display driver.
Cc: Eric Miao <eric.miao@marvell.com>
Signed-off-by: Jaya Kumar <jayakumar.lkml@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/gumstix.c')
-rw-r--r-- | arch/arm/mach-pxa/gumstix.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/gumstix.c b/arch/arm/mach-pxa/gumstix.c index e296ce11658c..9cb4a074d9f0 100644 --- a/arch/arm/mach-pxa/gumstix.c +++ b/arch/arm/mach-pxa/gumstix.c | |||
@@ -191,6 +191,11 @@ int __attribute__((weak)) am200_init(void) | |||
191 | return 0; | 191 | return 0; |
192 | } | 192 | } |
193 | 193 | ||
194 | int __attribute__((weak)) am300_init(void) | ||
195 | { | ||
196 | return 0; | ||
197 | } | ||
198 | |||
194 | static void __init carrier_board_init(void) | 199 | static void __init carrier_board_init(void) |
195 | { | 200 | { |
196 | /* | 201 | /* |
@@ -198,6 +203,7 @@ static void __init carrier_board_init(void) | |||
198 | * they cannot be detected programatically | 203 | * they cannot be detected programatically |
199 | */ | 204 | */ |
200 | am200_init(); | 205 | am200_init(); |
206 | am300_init(); | ||
201 | } | 207 | } |
202 | 208 | ||
203 | static void __init gumstix_init(void) | 209 | static void __init gumstix_init(void) |