@@ -288,27 +288,6 @@ void __is_set_sensor(struct fimc_is *is, int fps)
fimc_is_set_param_bit(is, PARAM_ISP_OTF_INPUT);
}
-void __is_set_init_isp_aa(struct fimc_is *is)
-{
- struct isp_param *isp;
-
- isp = &is->config[is->config_index].isp;
-
- isp->aa.cmd = ISP_AA_COMMAND_START;
- isp->aa.target = ISP_AA_TARGET_AF | ISP_AA_TARGET_AE |
- ISP_AA_TARGET_AWB;
- isp->aa.mode = 0;
- isp->aa.scene = 0;
- isp->aa.sleep = 0;
- isp->aa.face = 0;
- isp->aa.touch_x = 0;
- isp->aa.touch_y = 0;
- isp->aa.manual_af_setting = 0;
- isp->aa.err = ISP_AF_ERROR_NONE;
-
- fimc_is_set_param_bit(is, PARAM_ISP_AA);
-}
-
void __is_set_isp_flash(struct fimc_is *is, u32 cmd, u32 redeye)
{
unsigned int index = is->config_index;
@@ -96,18 +96,6 @@ int fimc_is_hw_set_param(struct fimc_is *is)
return 0;
}
-int fimc_is_hw_set_tune(struct fimc_is *is)
-{
- fimc_is_hw_wait_intmsr0_intmsd0(is);
-
- mcuctl_write(HIC_SET_TUNE, is, MCUCTL_REG_ISSR(0));
- mcuctl_write(is->sensor_index, is, MCUCTL_REG_ISSR(1));
- mcuctl_write(is->h2i_cmd.entry_id, is, MCUCTL_REG_ISSR(2));
-
- fimc_is_hw_set_intgr0_gd0(is);
- return 0;
-}
-
#define FIMC_IS_MAX_PARAMS 4
int fimc_is_hw_get_params(struct fimc_is *is, unsigned int num_args)
These functions do not have any callers yet and hence could be removed for now. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> --- drivers/media/platform/exynos4-is/fimc-is-param.c | 21 --------------------- drivers/media/platform/exynos4-is/fimc-is-regs.c | 12 ------------ 2 files changed, 33 deletions(-)