diff options
Diffstat (limited to 'arch/arm/mach-exynos/mach-nuri.c')
-rw-r--r-- | arch/arm/mach-exynos/mach-nuri.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c index b8b3fbf0bae7..1ea79730187f 100644 --- a/arch/arm/mach-exynos/mach-nuri.c +++ b/arch/arm/mach-exynos/mach-nuri.c | |||
@@ -1208,25 +1208,25 @@ static struct i2c_board_info m5mols_board_info = { | |||
1208 | .platform_data = &m5mols_platdata, | 1208 | .platform_data = &m5mols_platdata, |
1209 | }; | 1209 | }; |
1210 | 1210 | ||
1211 | static struct s5p_fimc_isp_info nuri_camera_sensors[] = { | 1211 | static struct fimc_source_info nuri_camera_sensors[] = { |
1212 | { | 1212 | { |
1213 | .flags = V4L2_MBUS_PCLK_SAMPLE_RISING | | 1213 | .flags = V4L2_MBUS_PCLK_SAMPLE_RISING | |
1214 | V4L2_MBUS_VSYNC_ACTIVE_LOW, | 1214 | V4L2_MBUS_VSYNC_ACTIVE_LOW, |
1215 | .bus_type = FIMC_ITU_601, | 1215 | .fimc_bus_type = FIMC_BUS_TYPE_ITU_601, |
1216 | .board_info = &s5k6aa_board_info, | 1216 | .board_info = &s5k6aa_board_info, |
1217 | .clk_frequency = 24000000UL, | 1217 | .clk_frequency = 24000000UL, |
1218 | .i2c_bus_num = 6, | 1218 | .i2c_bus_num = 6, |
1219 | }, { | 1219 | }, { |
1220 | .flags = V4L2_MBUS_PCLK_SAMPLE_FALLING | | 1220 | .flags = V4L2_MBUS_PCLK_SAMPLE_FALLING | |
1221 | V4L2_MBUS_VSYNC_ACTIVE_LOW, | 1221 | V4L2_MBUS_VSYNC_ACTIVE_LOW, |
1222 | .bus_type = FIMC_MIPI_CSI2, | 1222 | .fimc_bus_type = FIMC_BUS_TYPE_MIPI_CSI2, |
1223 | .board_info = &m5mols_board_info, | 1223 | .board_info = &m5mols_board_info, |
1224 | .clk_frequency = 24000000UL, | 1224 | .clk_frequency = 24000000UL, |
1225 | }, | 1225 | }, |
1226 | }; | 1226 | }; |
1227 | 1227 | ||
1228 | static struct s5p_platform_fimc fimc_md_platdata = { | 1228 | static struct s5p_platform_fimc fimc_md_platdata = { |
1229 | .isp_info = nuri_camera_sensors, | 1229 | .source_info = nuri_camera_sensors, |
1230 | .num_clients = ARRAY_SIZE(nuri_camera_sensors), | 1230 | .num_clients = ARRAY_SIZE(nuri_camera_sensors), |
1231 | }; | 1231 | }; |
1232 | 1232 | ||