diff options
Diffstat (limited to 'arch/arm/mach-omap1/board-palmte.c')
-rw-r--r-- | arch/arm/mach-omap1/board-palmte.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/board-palmte.c b/arch/arm/mach-omap1/board-palmte.c index e488f7236775..4bc8a62909b9 100644 --- a/arch/arm/mach-omap1/board-palmte.c +++ b/arch/arm/mach-omap1/board-palmte.c | |||
@@ -38,6 +38,15 @@ static void __init omap_generic_init_irq(void) | |||
38 | omap_init_irq(); | 38 | omap_init_irq(); |
39 | } | 39 | } |
40 | 40 | ||
41 | static struct platform_device palmte_lcd_device = { | ||
42 | .name = "lcd_palmte", | ||
43 | .id = -1, | ||
44 | }; | ||
45 | |||
46 | static struct platform_device *devices[] __initdata = { | ||
47 | &palmte_lcd_device, | ||
48 | }; | ||
49 | |||
41 | static struct omap_usb_config palmte_usb_config __initdata = { | 50 | static struct omap_usb_config palmte_usb_config __initdata = { |
42 | .register_dev = 1, | 51 | .register_dev = 1, |
43 | .hmc_mode = 0, | 52 | .hmc_mode = 0, |
@@ -55,7 +64,6 @@ static struct omap_mmc_config palmte_mmc_config __initdata = { | |||
55 | }; | 64 | }; |
56 | 65 | ||
57 | static struct omap_lcd_config palmte_lcd_config __initdata = { | 66 | static struct omap_lcd_config palmte_lcd_config __initdata = { |
58 | .panel_name = "palmte", | ||
59 | .ctrl_name = "internal", | 67 | .ctrl_name = "internal", |
60 | }; | 68 | }; |
61 | 69 | ||
@@ -69,6 +77,8 @@ static void __init omap_generic_init(void) | |||
69 | { | 77 | { |
70 | omap_board_config = palmte_config; | 78 | omap_board_config = palmte_config; |
71 | omap_board_config_size = ARRAY_SIZE(palmte_config); | 79 | omap_board_config_size = ARRAY_SIZE(palmte_config); |
80 | |||
81 | platform_add_devices(devices, ARRAY_SIZE(devices)); | ||
72 | } | 82 | } |
73 | 83 | ||
74 | static void __init omap_generic_map_io(void) | 84 | static void __init omap_generic_map_io(void) |