Home
last modified time | relevance | path

Searched full:hdl (Results 1 – 25 of 254) sorted by relevance

1234567891011

/Linux-v6.6/drivers/media/v4l2-core/
Dv4l2-ctrls-request.c19 void v4l2_ctrl_handler_init_request(struct v4l2_ctrl_handler *hdl) in v4l2_ctrl_handler_init_request() argument
21 INIT_LIST_HEAD(&hdl->requests); in v4l2_ctrl_handler_init_request()
22 INIT_LIST_HEAD(&hdl->requests_queued); in v4l2_ctrl_handler_init_request()
23 hdl->request_is_queued = false; in v4l2_ctrl_handler_init_request()
24 media_request_object_init(&hdl->req_obj); in v4l2_ctrl_handler_init_request()
28 void v4l2_ctrl_handler_free_request(struct v4l2_ctrl_handler *hdl) in v4l2_ctrl_handler_free_request() argument
39 if (hdl->req_obj.ops || list_empty(&hdl->requests)) in v4l2_ctrl_handler_free_request()
47 list_for_each_entry_safe(req, next_req, &hdl->requests, requests) { in v4l2_ctrl_handler_free_request()
53 static int v4l2_ctrl_request_clone(struct v4l2_ctrl_handler *hdl, in v4l2_ctrl_request_clone() argument
59 if (WARN_ON(!hdl || hdl == from)) in v4l2_ctrl_request_clone()
[all …]
Dv4l2-ctrls-core.c1524 static inline int handler_set_err(struct v4l2_ctrl_handler *hdl, int err) in handler_set_err() argument
1526 if (hdl->error == 0) in handler_set_err()
1527 hdl->error = err; in handler_set_err()
1532 int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl, in v4l2_ctrl_handler_init_class() argument
1536 mutex_init(&hdl->_lock); in v4l2_ctrl_handler_init_class()
1537 hdl->lock = &hdl->_lock; in v4l2_ctrl_handler_init_class()
1538 lockdep_set_class_and_name(hdl->lock, key, name); in v4l2_ctrl_handler_init_class()
1539 INIT_LIST_HEAD(&hdl->ctrls); in v4l2_ctrl_handler_init_class()
1540 INIT_LIST_HEAD(&hdl->ctrl_refs); in v4l2_ctrl_handler_init_class()
1541 hdl->nr_of_buckets = 1 + nr_of_controls_hint / 8; in v4l2_ctrl_handler_init_class()
[all …]
Dv4l2-ctrls-priv.h63 int handler_new_ref(struct v4l2_ctrl_handler *hdl,
67 struct v4l2_ctrl_ref *find_ref(struct v4l2_ctrl_handler *hdl, u32 id);
68 struct v4l2_ctrl_ref *find_ref_lock(struct v4l2_ctrl_handler *hdl, u32 id);
76 int v4l2_g_ext_ctrls_common(struct v4l2_ctrl_handler *hdl,
80 struct v4l2_ctrl_handler *hdl,
85 void v4l2_ctrl_handler_init_request(struct v4l2_ctrl_handler *hdl);
86 void v4l2_ctrl_handler_free_request(struct v4l2_ctrl_handler *hdl);
87 int v4l2_g_ext_ctrls_request(struct v4l2_ctrl_handler *hdl, struct video_device *vdev,
90 struct v4l2_ctrl_handler *hdl,
Dv4l2-ctrls-api.c213 static int prepare_ext_ctrls(struct v4l2_ctrl_handler *hdl, in prepare_ext_ctrls() argument
250 ref = find_ref_lock(hdl, id); in prepare_ext_ctrls()
265 ref = find_ref_lock(hdl, ctrl->cluster[0]->id); in prepare_ext_ctrls()
332 mutex_lock(hdl->lock); in prepare_ext_ctrls()
360 mutex_unlock(hdl->lock); in prepare_ext_ctrls()
369 static int class_check(struct v4l2_ctrl_handler *hdl, u32 which) in class_check() argument
374 return find_ref_lock(hdl, which | 1) ? 0 : -EINVAL; in class_check()
384 int v4l2_g_ext_ctrls_common(struct v4l2_ctrl_handler *hdl, in v4l2_g_ext_ctrls_common() argument
400 if (!hdl) in v4l2_g_ext_ctrls_common()
404 return class_check(hdl, cs->which); in v4l2_g_ext_ctrls_common()
[all …]
/Linux-v6.6/drivers/staging/rtl8712/
Drtl8712_io.c27 struct intf_hdl *hdl = &adapter->pio_queue->intf; in r8712_read8() local
29 return hdl->io_ops._read8(hdl, addr); in r8712_read8()
34 struct intf_hdl *hdl = &adapter->pio_queue->intf; in r8712_read16() local
36 return hdl->io_ops._read16(hdl, addr); in r8712_read16()
41 struct intf_hdl *hdl = &adapter->pio_queue->intf; in r8712_read32() local
43 return hdl->io_ops._read32(hdl, addr); in r8712_read32()
48 struct intf_hdl *hdl = &adapter->pio_queue->intf; in r8712_write8() local
50 hdl->io_ops._write8(hdl, addr, val); in r8712_write8()
55 struct intf_hdl *hdl = &adapter->pio_queue->intf; in r8712_write16() local
57 hdl->io_ops._write16(hdl, addr, val); in r8712_write16()
[all …]
/Linux-v6.6/drivers/media/common/
Dcx2341x.c1297 return container_of(ctrl->handler, struct cx2341x_handler, hdl); in to_cxhdl()
1300 static int cx2341x_hdl_api(struct cx2341x_handler *hdl, in cx2341x_hdl_api() argument
1312 return hdl->func(hdl->priv, cmd, args, 0, data); in cx2341x_hdl_api()
1323 struct cx2341x_handler *hdl = to_cxhdl(ctrl); in cx2341x_try_ctrl() local
1330 int gop = hdl->video_gop_size->val; in cx2341x_try_ctrl()
1337 hdl->video_gop_size->val = gop; in cx2341x_try_ctrl()
1343 hdl->video_encoding->val = in cx2341x_try_ctrl()
1344 (hdl->stream_type->val == V4L2_MPEG_STREAM_TYPE_MPEG1_SS || in cx2341x_try_ctrl()
1345 hdl->stream_type->val == V4L2_MPEG_STREAM_TYPE_MPEG1_VCD) ? in cx2341x_try_ctrl()
1348 if (hdl->video_encoding->val == V4L2_MPEG_VIDEO_ENCODING_MPEG_1) in cx2341x_try_ctrl()
[all …]
/Linux-v6.6/drivers/media/i2c/s5c73m3/
Ds5c73m3-ctrls.c445 struct v4l2_ctrl_handler *hdl = &ctrls->handler; in s5c73m3_init_controls() local
447 int ret = v4l2_ctrl_handler_init(hdl, 22); in s5c73m3_init_controls()
452 ctrls->auto_wb = v4l2_ctrl_new_std_menu(hdl, ops, in s5c73m3_init_controls()
457 ctrls->auto_exposure = v4l2_ctrl_new_std_menu(hdl, ops, in s5c73m3_init_controls()
460 ctrls->exposure_bias = v4l2_ctrl_new_int_menu(hdl, ops, in s5c73m3_init_controls()
466 ctrls->exposure_metering = v4l2_ctrl_new_std_menu(hdl, ops, in s5c73m3_init_controls()
471 ctrls->focus_auto = v4l2_ctrl_new_std(hdl, ops, in s5c73m3_init_controls()
474 ctrls->af_start = v4l2_ctrl_new_std(hdl, ops, in s5c73m3_init_controls()
477 ctrls->af_stop = v4l2_ctrl_new_std(hdl, ops, in s5c73m3_init_controls()
480 ctrls->af_status = v4l2_ctrl_new_std(hdl, ops, in s5c73m3_init_controls()
[all …]
/Linux-v6.6/include/media/
Dv4l2-ctrls.h496 * @hdl: The control handler.
513 * error will also be stored in @hdl->error.
515 int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl,
525 * @hdl: The control handler.
540 #define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \ argument
544 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, \
548 "(" #hdl ")->_lock"); \
552 #define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \ argument
553 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, NULL, NULL)
559 * @hdl: The control handler.
[all …]
/Linux-v6.6/drivers/media/test-drivers/vimc/
Dvimc-lens.c20 struct v4l2_ctrl_handler hdl; member
37 container_of(ctrl->handler, struct vimc_lens_device, hdl); in vimc_lens_s_ctrl()
61 v4l2_ctrl_handler_init(&vlens->hdl, 1); in vimc_lens_add()
63 v4l2_ctrl_new_std(&vlens->hdl, &vimc_lens_ctrl_ops, in vimc_lens_add()
66 vlens->sd.ctrl_handler = &vlens->hdl; in vimc_lens_add()
67 if (vlens->hdl.error) { in vimc_lens_add()
68 ret = vlens->hdl.error; in vimc_lens_add()
82 v4l2_ctrl_handler_free(&vlens->hdl); in vimc_lens_add()
94 v4l2_ctrl_handler_free(&vlens->hdl); in vimc_lens_release()
Dvimc-sensor.c32 struct v4l2_ctrl_handler hdl; member
300 container_of(ctrl->handler, struct vimc_sensor_device, hdl); in vimc_sensor_s_ctrl()
342 v4l2_ctrl_handler_free(&vsensor->hdl); in vimc_sensor_release()
393 v4l2_ctrl_handler_init(&vsensor->hdl, 4); in vimc_sensor_add()
395 v4l2_ctrl_new_custom(&vsensor->hdl, &vimc_sensor_ctrl_class, NULL); in vimc_sensor_add()
396 v4l2_ctrl_new_custom(&vsensor->hdl, &vimc_sensor_ctrl_test_pattern, NULL); in vimc_sensor_add()
397 v4l2_ctrl_new_custom(&vsensor->hdl, &vimc_sensor_ctrl_osd_mode, NULL); in vimc_sensor_add()
398 v4l2_ctrl_new_std(&vsensor->hdl, &vimc_sensor_ctrl_ops, in vimc_sensor_add()
400 v4l2_ctrl_new_std(&vsensor->hdl, &vimc_sensor_ctrl_ops, in vimc_sensor_add()
402 v4l2_ctrl_new_std(&vsensor->hdl, &vimc_sensor_ctrl_ops, in vimc_sensor_add()
[all …]
/Linux-v6.6/drivers/media/i2c/
Dtw9906.c20 struct v4l2_ctrl_handler hdl; member
111 struct tw9906 *dec = container_of(ctrl->handler, struct tw9906, hdl); in tw9906_s_ctrl()
164 struct v4l2_ctrl_handler *hdl; in tw9906_probe() local
178 hdl = &dec->hdl; in tw9906_probe()
179 v4l2_ctrl_handler_init(hdl, 4); in tw9906_probe()
180 v4l2_ctrl_new_std(hdl, &tw9906_ctrl_ops, in tw9906_probe()
182 v4l2_ctrl_new_std(hdl, &tw9906_ctrl_ops, in tw9906_probe()
184 v4l2_ctrl_new_std(hdl, &tw9906_ctrl_ops, in tw9906_probe()
186 sd->ctrl_handler = hdl; in tw9906_probe()
187 if (hdl->error) { in tw9906_probe()
[all …]
Dtw9903.c29 struct v4l2_ctrl_handler hdl; member
141 struct tw9903 *dec = container_of(ctrl->handler, struct tw9903, hdl); in tw9903_s_ctrl()
196 struct v4l2_ctrl_handler *hdl; in tw9903_probe() local
210 hdl = &dec->hdl; in tw9903_probe()
211 v4l2_ctrl_handler_init(hdl, 4); in tw9903_probe()
212 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
214 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
216 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
218 sd->ctrl_handler = hdl; in tw9903_probe()
219 if (hdl->error) { in tw9903_probe()
[all …]
Dml86v7667.c87 struct v4l2_ctrl_handler hdl; member
98 return &container_of(ctrl->handler, struct ml86v7667_priv, hdl)->sd; in to_sd()
376 v4l2_ctrl_handler_init(&priv->hdl, 8); in ml86v7667_probe()
377 v4l2_ctrl_new_std(&priv->hdl, &ml86v7667_ctrl_ops, in ml86v7667_probe()
379 v4l2_ctrl_new_std(&priv->hdl, &ml86v7667_ctrl_ops, in ml86v7667_probe()
381 v4l2_ctrl_new_std(&priv->hdl, &ml86v7667_ctrl_ops, in ml86v7667_probe()
383 v4l2_ctrl_new_std(&priv->hdl, &ml86v7667_ctrl_ops, in ml86v7667_probe()
385 v4l2_ctrl_new_std(&priv->hdl, &ml86v7667_ctrl_ops, in ml86v7667_probe()
387 v4l2_ctrl_new_std(&priv->hdl, &ml86v7667_ctrl_ops, in ml86v7667_probe()
389 v4l2_ctrl_new_std(&priv->hdl, &ml86v7667_ctrl_ops, in ml86v7667_probe()
[all …]
Dtw2804.c29 struct v4l2_ctrl_handler hdl; member
137 return container_of(ctrl->handler, struct tw2804, hdl); in to_state_from_ctrl()
365 v4l2_ctrl_handler_init(&state->hdl, 10); in tw2804_probe()
366 v4l2_ctrl_new_std(&state->hdl, &tw2804_ctrl_ops, in tw2804_probe()
368 v4l2_ctrl_new_std(&state->hdl, &tw2804_ctrl_ops, in tw2804_probe()
370 v4l2_ctrl_new_std(&state->hdl, &tw2804_ctrl_ops, in tw2804_probe()
372 v4l2_ctrl_new_std(&state->hdl, &tw2804_ctrl_ops, in tw2804_probe()
374 v4l2_ctrl_new_std(&state->hdl, &tw2804_ctrl_ops, in tw2804_probe()
376 v4l2_ctrl_new_std(&state->hdl, &tw2804_ctrl_ops, in tw2804_probe()
378 ctrl = v4l2_ctrl_new_std(&state->hdl, &tw2804_ctrl_ops, in tw2804_probe()
[all …]
Dcs53l32a.c33 struct v4l2_ctrl_handler hdl; member
43 return &container_of(ctrl->handler, struct cs53l32a_state, hdl)->sd; in to_sd()
99 v4l2_ctrl_handler_log_status(&state->hdl, sd->name); in cs53l32a_log_status()
160 v4l2_ctrl_handler_init(&state->hdl, 2); in cs53l32a_probe()
161 v4l2_ctrl_new_std(&state->hdl, &cs53l32a_ctrl_ops, in cs53l32a_probe()
163 v4l2_ctrl_new_std(&state->hdl, &cs53l32a_ctrl_ops, in cs53l32a_probe()
165 sd->ctrl_handler = &state->hdl; in cs53l32a_probe()
166 if (state->hdl.error) { in cs53l32a_probe()
167 int err = state->hdl.error; in cs53l32a_probe()
169 v4l2_ctrl_handler_free(&state->hdl); in cs53l32a_probe()
[all …]
Dcs5345.c28 struct v4l2_ctrl_handler hdl; member
38 return &container_of(ctrl->handler, struct cs5345_state, hdl)->sd; in to_sd()
157 v4l2_ctrl_handler_init(&state->hdl, 2); in cs5345_probe()
158 v4l2_ctrl_new_std(&state->hdl, &cs5345_ctrl_ops, in cs5345_probe()
160 v4l2_ctrl_new_std(&state->hdl, &cs5345_ctrl_ops, in cs5345_probe()
162 sd->ctrl_handler = &state->hdl; in cs5345_probe()
163 if (state->hdl.error) { in cs5345_probe()
164 int err = state->hdl.error; in cs5345_probe()
166 v4l2_ctrl_handler_free(&state->hdl); in cs5345_probe()
170 v4l2_ctrl_handler_setup(&state->hdl); in cs5345_probe()
[all …]
Dtlv320aic23b.c32 struct v4l2_ctrl_handler hdl; member
42 return &container_of(ctrl->handler, struct tlv320aic23b_state, hdl)->sd; in to_sd()
100 v4l2_ctrl_handler_log_status(&state->hdl, sd->name); in tlv320aic23b_log_status()
165 v4l2_ctrl_handler_init(&state->hdl, 1); in tlv320aic23b_probe()
166 v4l2_ctrl_new_std(&state->hdl, &tlv320aic23b_ctrl_ops, in tlv320aic23b_probe()
168 sd->ctrl_handler = &state->hdl; in tlv320aic23b_probe()
169 if (state->hdl.error) { in tlv320aic23b_probe()
170 int err = state->hdl.error; in tlv320aic23b_probe()
172 v4l2_ctrl_handler_free(&state->hdl); in tlv320aic23b_probe()
175 v4l2_ctrl_handler_setup(&state->hdl); in tlv320aic23b_probe()
[all …]
Dwm8739.c42 struct v4l2_ctrl_handler hdl; member
59 return &container_of(ctrl->handler, struct wm8739_state, hdl)->sd; in to_sd()
154 v4l2_ctrl_handler_log_status(&state->hdl, sd->name); in wm8739_log_status()
198 v4l2_ctrl_handler_init(&state->hdl, 2); in wm8739_probe()
199 state->volume = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops, in wm8739_probe()
201 state->mute = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops, in wm8739_probe()
203 state->balance = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops, in wm8739_probe()
205 sd->ctrl_handler = &state->hdl; in wm8739_probe()
206 if (state->hdl.error) { in wm8739_probe()
207 int err = state->hdl.error; in wm8739_probe()
[all …]
Dsaa6752hs.c83 struct v4l2_ctrl_handler hdl; member
361 container_of(ctrl->handler, struct saa6752hs_state, hdl); in saa6752hs_try_ctrl()
377 container_of(ctrl->handler, struct saa6752hs_state, hdl); in saa6752hs_s_ctrl()
666 struct v4l2_ctrl_handler *hdl; in saa6752hs_probe() local
689 hdl = &h->hdl; in saa6752hs_probe()
690 v4l2_ctrl_handler_init(hdl, 14); in saa6752hs_probe()
691 v4l2_ctrl_new_std_menu(hdl, &saa6752hs_ctrl_ops, in saa6752hs_probe()
697 v4l2_ctrl_new_std_menu(hdl, &saa6752hs_ctrl_ops, in saa6752hs_probe()
705 v4l2_ctrl_new_std_menu(hdl, &saa6752hs_ctrl_ops, in saa6752hs_probe()
712 v4l2_ctrl_new_std_menu(hdl, &saa6752hs_ctrl_ops, in saa6752hs_probe()
[all …]
Dlm3646.c206 struct v4l2_ctrl_handler *hdl = &flash->ctrls_led; in lm3646_init_controls() local
209 v4l2_ctrl_handler_init(hdl, 8); in lm3646_init_controls()
211 v4l2_ctrl_new_std_menu(hdl, ops, V4L2_CID_FLASH_LED_MODE, in lm3646_init_controls()
216 v4l2_ctrl_new_std_menu(hdl, ops, V4L2_CID_FLASH_STROBE_SOURCE, in lm3646_init_controls()
220 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FLASH_STROBE, 0, 0, 0, 0); in lm3646_init_controls()
222 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FLASH_STROBE_STOP, 0, 0, 0, 0); in lm3646_init_controls()
225 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FLASH_TIMEOUT, in lm3646_init_controls()
231 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FLASH_INTENSITY, in lm3646_init_controls()
238 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FLASH_TORCH_INTENSITY, in lm3646_init_controls()
245 fault = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FLASH_FAULT, 0, in lm3646_init_controls()
[all …]
Dwm8775.c45 struct v4l2_ctrl_handler hdl; member
60 return &container_of(ctrl->handler, struct wm8775_state, hdl)->sd; in to_sd()
150 v4l2_ctrl_handler_log_status(&state->hdl, sd->name); in wm8775_log_status()
219 v4l2_ctrl_handler_init(&state->hdl, 4); in wm8775_probe()
220 state->mute = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
222 state->vol = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
224 state->bal = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
226 state->loud = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
228 sd->ctrl_handler = &state->hdl; in wm8775_probe()
229 err = state->hdl.error; in wm8775_probe()
[all …]
Dadv7393.c49 struct v4l2_ctrl_handler hdl; member
67 return &container_of(ctrl->handler, struct adv7393_state, hdl)->sd; in to_sd()
411 v4l2_ctrl_handler_init(&state->hdl, 3); in adv7393_probe()
412 v4l2_ctrl_new_std(&state->hdl, &adv7393_ctrl_ops, in adv7393_probe()
416 v4l2_ctrl_new_std(&state->hdl, &adv7393_ctrl_ops, in adv7393_probe()
420 v4l2_ctrl_new_std(&state->hdl, &adv7393_ctrl_ops, in adv7393_probe()
424 state->sd.ctrl_handler = &state->hdl; in adv7393_probe()
425 if (state->hdl.error) { in adv7393_probe()
426 int err = state->hdl.error; in adv7393_probe()
428 v4l2_ctrl_handler_free(&state->hdl); in adv7393_probe()
[all …]
/Linux-v6.6/drivers/media/platform/st/sti/delta/
Ddelta-ipc.h35 * @hdl: (out) handle of decoding instance.
40 struct delta_buf **ipc_buf, void **hdl);
44 * @hdl: (in) handle of decoding instance.
50 int delta_ipc_set_stream(void *hdl, struct delta_ipc_param *param);
55 * @hdl: (in) handle of decoding instance.
67 int delta_ipc_decode(void *hdl, struct delta_ipc_param *param,
72 * @hdl: (in) handle of decoding instance to close.
74 void delta_ipc_close(void *hdl);
/Linux-v6.6/drivers/media/usb/pwc/
Dpwc-v4l.c152 struct v4l2_ctrl_handler *hdl; in pwc_init_controls() local
156 hdl = &pdev->ctrl_handler; in pwc_init_controls()
157 r = v4l2_ctrl_handler_init(hdl, 20); in pwc_init_controls()
165 pdev->brightness = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops, in pwc_init_controls()
171 pdev->contrast = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops, in pwc_init_controls()
183 pdev->saturation = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops, in pwc_init_controls()
190 pdev->gamma = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops, in pwc_init_controls()
200 pdev->auto_white_balance = v4l2_ctrl_new_custom(hdl, &cfg, NULL); in pwc_init_controls()
203 return hdl->error; in pwc_init_controls()
209 pdev->red_balance = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops, in pwc_init_controls()
[all …]
/Linux-v6.6/drivers/media/radio/
Dradio-keene.c52 struct v4l2_ctrl_handler hdl; member
235 container_of(ctrl->handler, struct keene_device, hdl); in keene_s_ctrl()
288 v4l2_ctrl_handler_free(&radio->hdl); in usb_keene_video_device_release()
299 struct v4l2_ctrl_handler *hdl; in usb_keene_probe() local
325 hdl = &radio->hdl; in usb_keene_probe()
326 v4l2_ctrl_handler_init(hdl, 4); in usb_keene_probe()
327 v4l2_ctrl_new_std(hdl, &keene_ctrl_ops, V4L2_CID_AUDIO_MUTE, in usb_keene_probe()
329 v4l2_ctrl_new_std_menu(hdl, &keene_ctrl_ops, V4L2_CID_TUNE_PREEMPHASIS, in usb_keene_probe()
331 v4l2_ctrl_new_std(hdl, &keene_ctrl_ops, V4L2_CID_TUNE_POWER_LEVEL, in usb_keene_probe()
333 v4l2_ctrl_new_std(hdl, &keene_ctrl_ops, V4L2_CID_AUDIO_COMPRESSION_GAIN, in usb_keene_probe()
[all …]

1234567891011