aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-bf537/boards
diff options
context:
space:
mode:
authorMichael Hennerich <michael.hennerich@analog.com>2008-01-27 06:58:46 -0500
committerBryan Wu <bryan.wu@analog.com>2008-01-27 06:58:46 -0500
commit0d4a89bb3eb58f39831186fa6b1542893dbfdc9f (patch)
treec295b0acc5749bee8754885fd644cf3d1bec4eb6 /arch/blackfin/mach-bf537/boards
parentfb5f00492a748facc9f069c95621e05c148edf53 (diff)
[Blackfin] arch: add Hitachi TX09D70VM1CDA TFT LCD driver resource to Blackfin board
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch/blackfin/mach-bf537/boards')
-rw-r--r--arch/blackfin/mach-bf537/boards/cm_bf537.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf537/boards/cm_bf537.c b/arch/blackfin/mach-bf537/boards/cm_bf537.c
index c0fb06dbc42e..a102615cac7c 100644
--- a/arch/blackfin/mach-bf537/boards/cm_bf537.c
+++ b/arch/blackfin/mach-bf537/boards/cm_bf537.c
@@ -216,6 +216,12 @@ static struct platform_device rtc_device = {
216}; 216};
217#endif 217#endif
218 218
219#if defined(CONFIG_FB_HITACHI_TX09) || defined(CONFIG_FB_HITACHI_TX09_MODULE)
220static struct platform_device hitachi_fb_device = {
221 .name = "hitachi-tx09",
222};
223#endif
224
219#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) 225#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
220static struct resource smc91x_resources[] = { 226static struct resource smc91x_resources[] = {
221 { 227 {
@@ -374,6 +380,10 @@ static struct platform_device bfin_pata_device = {
374#endif 380#endif
375 381
376static struct platform_device *cm_bf537_devices[] __initdata = { 382static struct platform_device *cm_bf537_devices[] __initdata = {
383#if defined(CONFIG_FB_HITACHI_TX09) || defined(CONFIG_FB_HITACHI_TX09_MODULE)
384 &hitachi_fb_device,
385#endif
386
377#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) 387#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
378 &rtc_device, 388 &rtc_device,
379#endif 389#endif