diff options
Diffstat (limited to 'arch/sh/boards/mach-se/7724/setup.c')
-rw-r--r-- | arch/sh/boards/mach-se/7724/setup.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/sh/boards/mach-se/7724/setup.c b/arch/sh/boards/mach-se/7724/setup.c index 2b07fc016950..c540b16547c3 100644 --- a/arch/sh/boards/mach-se/7724/setup.c +++ b/arch/sh/boards/mach-se/7724/setup.c | |||
@@ -182,12 +182,10 @@ static struct sh_mobile_lcdc_info lcdc_info = { | |||
182 | .chan = LCDC_CHAN_MAINLCD, | 182 | .chan = LCDC_CHAN_MAINLCD, |
183 | .fourcc = V4L2_PIX_FMT_RGB565, | 183 | .fourcc = V4L2_PIX_FMT_RGB565, |
184 | .clock_divider = 1, | 184 | .clock_divider = 1, |
185 | .lcd_size_cfg = { /* 7.0 inch */ | 185 | .panel_cfg = { /* 7.0 inch */ |
186 | .width = 152, | 186 | .width = 152, |
187 | .height = 91, | 187 | .height = 91, |
188 | }, | 188 | }, |
189 | .board_cfg = { | ||
190 | }, | ||
191 | } | 189 | } |
192 | }; | 190 | }; |
193 | 191 | ||
@@ -278,7 +276,9 @@ static struct platform_device ceu1_device = { | |||
278 | /* FSI */ | 276 | /* FSI */ |
279 | /* change J20, J21, J22 pin to 1-2 connection to use slave mode */ | 277 | /* change J20, J21, J22 pin to 1-2 connection to use slave mode */ |
280 | static struct sh_fsi_platform_info fsi_info = { | 278 | static struct sh_fsi_platform_info fsi_info = { |
281 | .porta_flags = SH_FSI_BRS_INV, | 279 | .port_a = { |
280 | .flags = SH_FSI_BRS_INV, | ||
281 | }, | ||
282 | }; | 282 | }; |
283 | 283 | ||
284 | static struct resource fsi_resources[] = { | 284 | static struct resource fsi_resources[] = { |
@@ -888,12 +888,12 @@ static int __init devices_setup(void) | |||
888 | 888 | ||
889 | if (sw & SW41_B) { | 889 | if (sw & SW41_B) { |
890 | /* 720p */ | 890 | /* 720p */ |
891 | lcdc_info.ch[0].lcd_cfg = lcdc_720p_modes; | 891 | lcdc_info.ch[0].lcd_modes = lcdc_720p_modes; |
892 | lcdc_info.ch[0].num_cfg = ARRAY_SIZE(lcdc_720p_modes); | 892 | lcdc_info.ch[0].num_modes = ARRAY_SIZE(lcdc_720p_modes); |
893 | } else { | 893 | } else { |
894 | /* VGA */ | 894 | /* VGA */ |
895 | lcdc_info.ch[0].lcd_cfg = lcdc_vga_modes; | 895 | lcdc_info.ch[0].lcd_modes = lcdc_vga_modes; |
896 | lcdc_info.ch[0].num_cfg = ARRAY_SIZE(lcdc_vga_modes); | 896 | lcdc_info.ch[0].num_modes = ARRAY_SIZE(lcdc_vga_modes); |
897 | } | 897 | } |
898 | 898 | ||
899 | if (sw & SW41_A) { | 899 | if (sw & SW41_A) { |