Lines Matching refs:exposure
147 struct v4l2_ctrl *exposure; member
865 static int ov7251_set_exposure(struct ov7251 *ov7251, s32 exposure) in ov7251_set_exposure() argument
871 val[0] = (exposure & 0xf000) >> 12; /* goes to OV7251_AEC_EXPO_0 */ in ov7251_set_exposure()
872 val[1] = (exposure & 0x0ff0) >> 4; /* goes to OV7251_AEC_EXPO_1 */ in ov7251_set_exposure()
873 val[2] = (exposure & 0x000f) << 4; /* goes to OV7251_AEC_EXPO_2 */ in ov7251_set_exposure()
1037 __v4l2_ctrl_modify_range(ov7251->exposure, in ov7251_s_ctrl()
1038 ov7251->exposure->minimum, in ov7251_s_ctrl()
1040 ov7251->exposure->step, in ov7251_s_ctrl()
1041 min(ov7251->exposure->val, in ov7251_s_ctrl()
1239 ret = __v4l2_ctrl_modify_range(ov7251->exposure, in ov7251_set_format()
1245 ret = __v4l2_ctrl_s_ctrl(ov7251->exposure, in ov7251_set_format()
1427 ret = __v4l2_ctrl_modify_range(ov7251->exposure, in ov7251_set_frame_interval()
1433 ret = __v4l2_ctrl_s_ctrl(ov7251->exposure, in ov7251_set_frame_interval()
1572 ov7251->exposure = v4l2_ctrl_new_std(&ov7251->ctrls, &ov7251_ctrl_ops, in ov7251_init_ctrls()