media: staging: atomisp: There's no struct atomisp_dvs2_coefficients
It's called struct atomisp_dis_coefficients. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
4556cbcf80
commit
f8b39c658a
|
@ -509,7 +509,7 @@ struct atomisp_parameters {
|
|||
struct atomisp_shading_table *shading_table;
|
||||
struct atomisp_morph_table *morph_table;
|
||||
struct atomisp_dvs_coefficients *dvs_coefs; /* DVS 1.0 coefficients */
|
||||
struct atomisp_dvs2_coefficients *dvs2_coefs; /* DVS 2.0 coefficients */
|
||||
struct atomisp_dis_coefficients *dvs2_coefs; /* DVS 2.0 coefficients */
|
||||
struct atomisp_capture_config *capture_config;
|
||||
struct atomisp_anr_thres *anr_thres;
|
||||
|
||||
|
|
|
@ -3806,7 +3806,7 @@ int atomisp_css_cp_dvs2_coefs(struct atomisp_sub_device *asd,
|
|||
}
|
||||
|
||||
css_param->update_flag.dvs2_coefs =
|
||||
(struct atomisp_dvs2_coefficients *)css_param->dvs2_coeff;
|
||||
(struct atomisp_dis_coefficients *)css_param->dvs2_coeff;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -3357,7 +3357,7 @@ int atomisp_css_set_dis_coefs(struct atomisp_sub_device *asd,
|
|||
return -EFAULT;
|
||||
|
||||
asd->params.css_param.update_flag.dvs2_coefs =
|
||||
(struct atomisp_dvs2_coefficients *)
|
||||
(struct atomisp_dis_coefficients *)
|
||||
asd->params.css_param.dvs2_coeff;
|
||||
/* FIXME! */
|
||||
/* asd->params.dis_proj_data_valid = false; */
|
||||
|
|
Loading…
Reference in New Issue