Lines Matching refs:hdl
1369 struct v4l2_ctrl_handler *hdl = &ctrls->handler; in s5k6aa_initialize_ctrls() local
1371 int ret = v4l2_ctrl_handler_init(hdl, 16); in s5k6aa_initialize_ctrls()
1375 ctrls->awb = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_AUTO_WHITE_BALANCE, in s5k6aa_initialize_ctrls()
1377 ctrls->gain_red = v4l2_ctrl_new_custom(hdl, &s5k6aa_ctrls[0], NULL); in s5k6aa_initialize_ctrls()
1378 ctrls->gain_green = v4l2_ctrl_new_custom(hdl, &s5k6aa_ctrls[1], NULL); in s5k6aa_initialize_ctrls()
1379 ctrls->gain_blue = v4l2_ctrl_new_custom(hdl, &s5k6aa_ctrls[2], NULL); in s5k6aa_initialize_ctrls()
1382 ctrls->hflip = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_HFLIP, 0, 1, 1, 0); in s5k6aa_initialize_ctrls()
1383 ctrls->vflip = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_VFLIP, 0, 1, 1, 0); in s5k6aa_initialize_ctrls()
1386 ctrls->auto_exp = v4l2_ctrl_new_std_menu(hdl, ops, in s5k6aa_initialize_ctrls()
1390 ctrls->exposure = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_EXPOSURE, in s5k6aa_initialize_ctrls()
1393 ctrls->gain = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_GAIN, in s5k6aa_initialize_ctrls()
1397 v4l2_ctrl_new_std_menu(hdl, ops, V4L2_CID_POWER_LINE_FREQUENCY, in s5k6aa_initialize_ctrls()
1401 v4l2_ctrl_new_std_menu(hdl, ops, V4L2_CID_COLORFX, in s5k6aa_initialize_ctrls()
1404 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_WHITE_BALANCE_TEMPERATURE, in s5k6aa_initialize_ctrls()
1407 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_SATURATION, -127, 127, 1, 0); in s5k6aa_initialize_ctrls()
1408 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_BRIGHTNESS, -127, 127, 1, 0); in s5k6aa_initialize_ctrls()
1409 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_CONTRAST, -127, 127, 1, 0); in s5k6aa_initialize_ctrls()
1410 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_SHARPNESS, -127, 127, 1, 0); in s5k6aa_initialize_ctrls()
1412 if (hdl->error) { in s5k6aa_initialize_ctrls()
1413 ret = hdl->error; in s5k6aa_initialize_ctrls()
1414 v4l2_ctrl_handler_free(hdl); in s5k6aa_initialize_ctrls()
1418 s5k6aa->sd.ctrl_handler = hdl; in s5k6aa_initialize_ctrls()