| /linux/io_uring/ |
| H A D | mock_file.c | 115 struct io_mock_file *mf = iocb->ki_filp->private_data; in io_mock_delay_rw() local 126 hrtimer_start(&mio->timer, ns_to_ktime(mf->rw_delay_ns), in io_mock_delay_rw() 133 struct io_mock_file *mf = iocb->ki_filp->private_data; in io_mock_read_iter() local 137 if (iocb->ki_pos + len > mf->size) in io_mock_read_iter() 140 if (!mf->rw_delay_ns || nr_zeroed != len) in io_mock_read_iter() 148 struct io_mock_file *mf = iocb->ki_filp->private_data; in io_mock_write_iter() local 151 if (iocb->ki_pos + len > mf->size) in io_mock_write_iter() 153 if (!mf->rw_delay_ns) { in io_mock_write_iter() 163 struct io_mock_file *mf = file->private_data; in io_mock_llseek() local 165 return fixed_size_llseek(file, offset, whence, mf->size); in io_mock_llseek() [all …]
|
| /linux/drivers/hid/ |
| H A D | hid-mf.c | 37 struct mf_device *mf = data; in mf_play() local 50 mf->report->field[0]->value[0] = weak; in mf_play() 51 mf->report->field[0]->value[1] = strong; in mf_play() 52 hid_hw_request(hid, mf->report, HID_REQ_SET_REPORT); in mf_play() 59 struct mf_device *mf; in mf_init() local 91 mf = kzalloc_obj(struct mf_device); in mf_init() 92 if (!mf) in mf_init() 98 error = input_ff_create_memless(dev, mf, mf_play); in mf_init() 100 kfree(mf); in mf_init() 104 mf->report = report; in mf_init() [all …]
|
| /linux/drivers/clk/imx/ |
| H A D | clk-pllv3.c | 315 struct clk_pllv3_vf610_mf mf) in clk_pllv3_vf610_mf_to_rate() argument 320 temp64 *= mf.mfn; in clk_pllv3_vf610_mf_to_rate() 321 do_div(temp64, mf.mfd); in clk_pllv3_vf610_mf_to_rate() 323 return (parent_rate * mf.mfi) + temp64; in clk_pllv3_vf610_mf_to_rate() 329 struct clk_pllv3_vf610_mf mf; in clk_pllv3_vf610_rate_to_mf() local 332 mf.mfi = (rate >= 22 * parent_rate) ? 22 : 20; in clk_pllv3_vf610_rate_to_mf() 333 mf.mfd = 0x3fffffff; /* use max supported value for best accuracy */ in clk_pllv3_vf610_rate_to_mf() 335 if (rate <= parent_rate * mf.mfi) in clk_pllv3_vf610_rate_to_mf() 336 mf.mfn = 0; in clk_pllv3_vf610_rate_to_mf() 337 else if (rate >= parent_rate * (mf.mfi + 1)) in clk_pllv3_vf610_rate_to_mf() [all …]
|
| /linux/drivers/media/platform/samsung/exynos4-is/ |
| H A D | fimc-isp.c | 126 struct v4l2_mbus_framefmt *mf = &fmt->format; in fimc_isp_subdev_get_fmt() local 129 *mf = *v4l2_subdev_state_get_format(sd_state, fmt->pad); in fimc_isp_subdev_get_fmt() 133 mf->colorspace = V4L2_COLORSPACE_SRGB; in fimc_isp_subdev_get_fmt() 139 *mf = isp->sink_fmt; in fimc_isp_subdev_get_fmt() 142 *mf = isp->src_fmt; in fimc_isp_subdev_get_fmt() 145 mf->colorspace = V4L2_COLORSPACE_JPEG; in fimc_isp_subdev_get_fmt() 146 mf->code = MEDIA_BUS_FMT_YUV10_1X30; in fimc_isp_subdev_get_fmt() 153 fmt->pad, mf->code, mf->width, mf->height); in fimc_isp_subdev_get_fmt() 162 struct v4l2_mbus_framefmt *mf = &fmt->format; in __isp_subdev_try_format() local 165 mf->colorspace = V4L2_COLORSPACE_SRGB; in __isp_subdev_try_format() [all …]
|
| H A D | fimc-capture.c | 768 struct v4l2_mbus_framefmt *mf = &sfmt.format; in fimc_pipeline_try_format() local 783 ffmt = fimc_find_format(NULL, mf->code != 0 ? &mf->code : NULL, in fimc_pipeline_try_format() 792 mf->code = tfmt->code = ffmt->mbus_code; in fimc_pipeline_try_format() 805 mf->code = tfmt->code; in fimc_pipeline_try_format() 818 if (mf->code != tfmt->code) in fimc_pipeline_try_format() 822 tfmt->width = mf->width; in fimc_pipeline_try_format() 823 tfmt->height = mf->height; in fimc_pipeline_try_format() 829 mf->code = ffmt->mbus_code; in fimc_pipeline_try_format() 830 if (mf->width != tfmt->width || mf->height != tfmt->height) in fimc_pipeline_try_format() 832 tfmt->code = mf->code; in fimc_pipeline_try_format() [all …]
|
| H A D | fimc-lite.c | 555 struct v4l2_mbus_framefmt *mf = &format->format; in fimc_lite_subdev_try_fmt() local 559 v4l_bound_align_image(&mf->width, 8, dd->max_width, in fimc_lite_subdev_try_fmt() 561 &mf->height, 0, dd->max_height, 0, 0); in fimc_lite_subdev_try_fmt() 563 fmt = fimc_lite_find_format(NULL, &mf->code, 0, 0); in fimc_lite_subdev_try_fmt() 567 mf->colorspace = fmt->colorspace; in fimc_lite_subdev_try_fmt() 568 mf->code = fmt->mbus_code; in fimc_lite_subdev_try_fmt() 578 mf->code = sink_fmt->code; in fimc_lite_subdev_try_fmt() 579 mf->colorspace = sink_fmt->colorspace; in fimc_lite_subdev_try_fmt() 584 mf->code = sink->fmt->mbus_code; in fimc_lite_subdev_try_fmt() 585 mf->colorspace = sink->fmt->colorspace; in fimc_lite_subdev_try_fmt() [all …]
|
| H A D | mipi-csis.c | 280 struct v4l2_mbus_framefmt *mf) in find_csis_format() argument 285 if (mf->code == s5pcsis_formats[i].code) in find_csis_format() 331 struct v4l2_mbus_framefmt *mf = &state->format; in __s5pcsis_set_format() local 335 mf->code, mf->width, mf->height); in __s5pcsis_set_format() 343 val = (mf->width << 16) | mf->height; in __s5pcsis_set_format() 551 struct v4l2_mbus_framefmt *mf) in s5pcsis_try_format() argument 555 csis_fmt = find_csis_format(mf); in s5pcsis_try_format() 559 mf->code = csis_fmt->code; in s5pcsis_try_format() 560 v4l_bound_align_image(&mf->width, 1, CSIS_MAX_PIX_WIDTH, in s5pcsis_try_format() 562 &mf->height, 1, CSIS_MAX_PIX_HEIGHT, 1, in s5pcsis_try_format() [all …]
|
| /linux/drivers/media/i2c/ |
| H A D | s5k6a3.c | 88 struct v4l2_mbus_framefmt *mf) in find_sensor_format() argument 93 if (mf->code == s5k6a3_formats[i].code) in find_sensor_format() 110 static void s5k6a3_try_format(struct v4l2_mbus_framefmt *mf) in s5k6a3_try_format() argument 114 fmt = find_sensor_format(mf); in s5k6a3_try_format() 115 mf->code = fmt->code; in s5k6a3_try_format() 116 mf->field = V4L2_FIELD_NONE; in s5k6a3_try_format() 117 v4l_bound_align_image(&mf->width, S5K6A3_SENSOR_MIN_WIDTH, in s5k6a3_try_format() 119 &mf->height, S5K6A3_SENSOR_MIN_HEIGHT, in s5k6a3_try_format() 138 struct v4l2_mbus_framefmt *mf; in s5k6a3_set_fmt() local 142 mf = __s5k6a3_get_format(sensor, sd_state, fmt->pad, fmt->which); in s5k6a3_set_fmt() [all …]
|
| H A D | tw9910.c | 747 struct v4l2_mbus_framefmt *mf = &format->format; in tw9910_get_fmt() local 760 mf->width = priv->scale->width; in tw9910_get_fmt() 761 mf->height = priv->scale->height; in tw9910_get_fmt() 762 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in tw9910_get_fmt() 763 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in tw9910_get_fmt() 764 mf->field = V4L2_FIELD_INTERLACED_BT; in tw9910_get_fmt() 770 struct v4l2_mbus_framefmt *mf) in tw9910_s_fmt() argument 772 u32 width = mf->width, height = mf->height; in tw9910_s_fmt() 775 WARN_ON(mf->field != V4L2_FIELD_ANY && in tw9910_s_fmt() 776 mf->field != V4L2_FIELD_INTERLACED_BT); in tw9910_s_fmt() [all …]
|
| H A D | mt9m001.c | 322 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m001_get_fmt() local 328 mf = v4l2_subdev_state_get_format(sd_state, 0); in mt9m001_get_fmt() 329 format->format = *mf; in mt9m001_get_fmt() 333 mf->width = mt9m001->rect.width; in mt9m001_get_fmt() 334 mf->height = mt9m001->rect.height; in mt9m001_get_fmt() 335 mf->code = mt9m001->fmt->code; in mt9m001_get_fmt() 336 mf->colorspace = mt9m001->fmt->colorspace; in mt9m001_get_fmt() 337 mf->field = V4L2_FIELD_NONE; in mt9m001_get_fmt() 338 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m001_get_fmt() 339 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in mt9m001_get_fmt() [all …]
|
| H A D | rj54n1cb0c.c | 609 struct v4l2_mbus_framefmt *mf = &format->format; in rj54n1_get_fmt() local 616 mf->code = rj54n1->fmt->code; in rj54n1_get_fmt() 617 mf->colorspace = rj54n1->fmt->colorspace; in rj54n1_get_fmt() 618 mf->ycbcr_enc = V4L2_YCBCR_ENC_601; in rj54n1_get_fmt() 619 mf->xfer_func = V4L2_XFER_FUNC_SRGB; in rj54n1_get_fmt() 620 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in rj54n1_get_fmt() 621 mf->field = V4L2_FIELD_NONE; in rj54n1_get_fmt() 622 mf->width = rj54n1->width; in rj54n1_get_fmt() 623 mf->height = rj54n1->height; in rj54n1_get_fmt() 979 struct v4l2_mbus_framefmt *mf = &format->format; in rj54n1_set_fmt() local [all …]
|
| H A D | mt9m111.c | 521 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m111_get_fmt() local 528 mf = v4l2_subdev_state_get_format(sd_state, format->pad); in mt9m111_get_fmt() 529 format->format = *mf; in mt9m111_get_fmt() 533 mf->width = mt9m111->width; in mt9m111_get_fmt() 534 mf->height = mt9m111->height; in mt9m111_get_fmt() 535 mf->code = mt9m111->fmt->code; in mt9m111_get_fmt() 536 mf->colorspace = mt9m111->fmt->colorspace; in mt9m111_get_fmt() 537 mf->field = V4L2_FIELD_NONE; in mt9m111_get_fmt() 538 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m111_get_fmt() 539 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in mt9m111_get_fmt() [all …]
|
| H A D | adv7170.c | 267 struct v4l2_mbus_framefmt *mf = &format->format; in adv7170_get_fmt() local 274 mf->code = MEDIA_BUS_FMT_UYVY8_1X16; in adv7170_get_fmt() 276 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in adv7170_get_fmt() 278 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in adv7170_get_fmt() 279 mf->width = 0; in adv7170_get_fmt() 280 mf->height = 0; in adv7170_get_fmt() 281 mf->field = V4L2_FIELD_ANY; in adv7170_get_fmt() 290 struct v4l2_mbus_framefmt *mf = &format->format; in adv7170_set_fmt() local 296 switch (mf->code) { in adv7170_set_fmt() 307 "illegal v4l2_mbus_framefmt code: %d\n", mf->code); in adv7170_set_fmt()
|
| H A D | s5k5baf.c | 731 static int s5k5baf_find_pixfmt(struct v4l2_mbus_framefmt *mf) in s5k5baf_find_pixfmt() argument 736 if (mf->colorspace != s5k5baf_formats[i].colorspace) in s5k5baf_find_pixfmt() 738 if (mf->code == s5k5baf_formats[i].code) in s5k5baf_find_pixfmt() 1251 static void s5k5baf_try_cis_format(struct v4l2_mbus_framefmt *mf) in s5k5baf_try_cis_format() argument 1253 mf->width = S5K5BAF_CIS_WIDTH; in s5k5baf_try_cis_format() 1254 mf->height = S5K5BAF_CIS_HEIGHT; in s5k5baf_try_cis_format() 1255 mf->code = MEDIA_BUS_FMT_FIXED; in s5k5baf_try_cis_format() 1256 mf->colorspace = V4L2_COLORSPACE_JPEG; in s5k5baf_try_cis_format() 1257 mf->field = V4L2_FIELD_NONE; in s5k5baf_try_cis_format() 1260 static int s5k5baf_try_isp_format(struct v4l2_mbus_framefmt *mf) in s5k5baf_try_isp_format() argument [all …]
|
| H A D | hi846.c | 1695 struct v4l2_mbus_framefmt *mf = &format->format; in hi846_set_format() local 1697 const struct hi846_datafmt *fmt = hi846_find_datafmt(mf->code); in hi846_set_format() 1702 mf->code = hi846_colour_fmts[0].code; in hi846_set_format() 1703 mf->colorspace = hi846_colour_fmts[0].colorspace; in hi846_set_format() 1708 *v4l2_subdev_state_get_format(sd_state, format->pad) = *mf; in hi846_set_format() 1738 width, height, mf->width, mf->height); in hi846_set_format() 1745 mf->width = hi846->cur_mode->width; in hi846_set_format() 1746 mf->height = hi846->cur_mode->height; in hi846_set_format() 1747 mf->code = HI846_MEDIA_BUS_FORMAT; in hi846_set_format() 1748 mf->field = V4L2_FIELD_NONE; in hi846_set_format() [all …]
|
| H A D | ov2640.c | 915 struct v4l2_mbus_framefmt *mf = &format->format; in ov2640_get_fmt() local 923 mf = v4l2_subdev_state_get_format(sd_state, 0); in ov2640_get_fmt() 924 format->format = *mf; in ov2640_get_fmt() 928 mf->width = priv->win->width; in ov2640_get_fmt() 929 mf->height = priv->win->height; in ov2640_get_fmt() 930 mf->code = priv->cfmt_code; in ov2640_get_fmt() 931 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_get_fmt() 932 mf->field = V4L2_FIELD_NONE; in ov2640_get_fmt() 933 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in ov2640_get_fmt() 934 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in ov2640_get_fmt() [all …]
|
| H A D | adv7175.c | 305 struct v4l2_mbus_framefmt *mf = &format->format; in adv7175_get_fmt() local 312 mf->code = MEDIA_BUS_FMT_UYVY8_1X16; in adv7175_get_fmt() 314 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in adv7175_get_fmt() 316 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in adv7175_get_fmt() 317 mf->width = 0; in adv7175_get_fmt() 318 mf->height = 0; in adv7175_get_fmt() 319 mf->field = V4L2_FIELD_ANY; in adv7175_get_fmt() 328 struct v4l2_mbus_framefmt *mf = &format->format; in adv7175_set_fmt() local 335 switch (mf->code) { in adv7175_set_fmt() 346 "illegal v4l2_mbus_framefmt code: %d\n", mf->code); in adv7175_set_fmt()
|
| /linux/drivers/media/platform/samsung/s3c-camif/ |
| H A D | camif-capture.c | 1214 struct v4l2_mbus_framefmt *mf = &fmt->format; in s3c_camif_subdev_get_fmt() local 1217 mf = v4l2_subdev_state_get_format(sd_state, fmt->pad); in s3c_camif_subdev_get_fmt() 1218 fmt->format = *mf; in s3c_camif_subdev_get_fmt() 1227 *mf = camif->mbus_fmt; in s3c_camif_subdev_get_fmt() 1232 mf->width = camif->camif_crop.width; in s3c_camif_subdev_get_fmt() 1233 mf->height = camif->camif_crop.height; in s3c_camif_subdev_get_fmt() 1234 mf->code = camif->mbus_fmt.code; in s3c_camif_subdev_get_fmt() 1239 mf->field = V4L2_FIELD_NONE; in s3c_camif_subdev_get_fmt() 1240 mf->colorspace = V4L2_COLORSPACE_JPEG; in s3c_camif_subdev_get_fmt() 1245 struct v4l2_mbus_framefmt *mf, int pad) in __camif_subdev_try_format() argument [all …]
|
| /linux/drivers/message/fusion/ |
| H A D | mptscsih.c | 88 int mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r); 90 int mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r); 95 static void mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SC… 107 int mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r); 393 MPT_FRAME_HDR *mf; in mptscsih_issue_sep_command() local 404 if ((mf = mpt_get_msg_frame(ioc->InternalCtx, ioc)) == NULL) { in mptscsih_issue_sep_command() 410 SEPMsg = (SEPRequest_t *)mf; in mptscsih_issue_sep_command() 419 mpt_put_msg_frame(ioc->DoneCtx, ioc, mf); in mptscsih_issue_sep_command() 586 mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr) in mptscsih_io_done() argument 597 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx); in mptscsih_io_done() [all …]
|
| H A D | mptctl.c | 286 mptctl_taskmgmt_reply(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr) in mptctl_taskmgmt_reply() argument 288 if (!mf) in mptctl_taskmgmt_reply() 293 ioc->name, mf, mr)); in mptctl_taskmgmt_reply() 318 MPT_FRAME_HDR *mf; in mptctl_do_taskmgmt() local 335 mf = mpt_get_msg_frame(mptctl_taskmgmt_id, ioc); in mptctl_do_taskmgmt() 336 if (mf == NULL) { in mptctl_do_taskmgmt() 346 ioc->name, mf)); in mptctl_do_taskmgmt() 348 pScsiTm = (SCSITaskMgmt_t *) mf; in mptctl_do_taskmgmt() 387 mpt_put_msg_frame_hi_pri(mptctl_taskmgmt_id, ioc, mf); in mptctl_do_taskmgmt() 396 ioc, mf, retval)); in mptctl_do_taskmgmt() [all …]
|
| /linux/drivers/media/platform/nxp/imx8-isi/ |
| H A D | imx8-isi-pipe.c | 455 struct v4l2_mbus_framefmt *mf = &fmt->format; in mxc_isi_pipe_set_fmt() local 466 info = mxc_isi_bus_format_by_code(mf->code, in mxc_isi_pipe_set_fmt() 480 mf->code = info->mbus_code; in mxc_isi_pipe_set_fmt() 481 mf->width = clamp(mf->width, MXC_ISI_MIN_WIDTH, max_width); in mxc_isi_pipe_set_fmt() 482 mf->height = clamp(mf->height, MXC_ISI_MIN_HEIGHT, in mxc_isi_pipe_set_fmt() 488 rect->width = mf->width; in mxc_isi_pipe_set_fmt() 489 rect->height = mf->height; in mxc_isi_pipe_set_fmt() 495 rect->width = mf->width; in mxc_isi_pipe_set_fmt() 496 rect->height = mf->height; in mxc_isi_pipe_set_fmt() 501 format->width = mf->width; in mxc_isi_pipe_set_fmt() [all …]
|
| /linux/drivers/dma/dw-edma/ |
| H A D | dw-edma-pcie.c | 49 enum dw_edma_map_format mf; member 87 .mf = EDMA_MF_EDMA_UNROLL, 143 pdata->mf = map; in dw_edma_pcie_get_vsec_dma_data() 231 chip->mf = vsec_data->mf; in dw_edma_pcie_probe() 293 if (chip->mf == EDMA_MF_EDMA_LEGACY) in dw_edma_pcie_probe() 294 pci_dbg(pdev, "Version:\teDMA Port Logic (0x%x)\n", chip->mf); in dw_edma_pcie_probe() 295 else if (chip->mf == EDMA_MF_EDMA_UNROLL) in dw_edma_pcie_probe() 296 pci_dbg(pdev, "Version:\teDMA Unroll (0x%x)\n", chip->mf); in dw_edma_pcie_probe() 297 else if (chip->mf == EDMA_MF_HDMA_COMPAT) in dw_edma_pcie_probe() 298 pci_dbg(pdev, "Version:\tHDMA Compatible (0x%x)\n", chip->mf); in dw_edma_pcie_probe() [all …]
|
| /linux/drivers/video/fbdev/omap2/omapfb/dss/ |
| H A D | hdmi_pll.c | 45 unsigned n, m, mf, m2, sd; in hdmi_pll_compute() local 72 mf = 0; in hdmi_pll_compute() 74 mf = (u32)div_u64(262144ull * (target_clkdco - clkdco), fint); in hdmi_pll_compute() 76 if (mf > 0) in hdmi_pll_compute() 77 clkdco += (u32)div_u64((u64)mf * fint, 262144); in hdmi_pll_compute() 85 n, m, mf, m2, sd); in hdmi_pll_compute() 90 pi->mf = mf; in hdmi_pll_compute()
|
| /linux/drivers/media/platform/st/stm32/stm32-dcmipp/ |
| H A D | dcmipp-input.c | 197 struct v4l2_mbus_framefmt *mf; in dcmipp_inp_init_state() local 199 mf = v4l2_subdev_state_get_format(sd_state, i); in dcmipp_inp_init_state() 200 *mf = fmt_default; in dcmipp_inp_init_state() 276 struct v4l2_mbus_framefmt *mf; in dcmipp_inp_set_fmt() local 281 mf = v4l2_subdev_state_get_format(sd_state, fmt->pad); in dcmipp_inp_set_fmt() 289 mf->width, mf->height, mf->code, in dcmipp_inp_set_fmt() 290 mf->colorspace, mf->quantization, in dcmipp_inp_set_fmt() 291 mf->xfer_func, mf->ycbcr_enc, in dcmipp_inp_set_fmt() 297 *mf = fmt->format; in dcmipp_inp_set_fmt() 301 mf = v4l2_subdev_state_get_format(sd_state, 1); in dcmipp_inp_set_fmt() [all …]
|
| /linux/drivers/media/test-drivers/vimc/ |
| H A D | vimc-sensor.c | 54 struct v4l2_mbus_framefmt *mf; in vimc_sensor_init_state() local 56 mf = v4l2_subdev_state_get_format(sd_state, 0); in vimc_sensor_init_state() 57 *mf = fmt_default; in vimc_sensor_init_state() 142 struct v4l2_mbus_framefmt *mf; in vimc_sensor_set_fmt() local 148 mf = v4l2_subdev_state_get_format(sd_state, fmt->pad); in vimc_sensor_set_fmt() 157 mf->width, mf->height, mf->code, in vimc_sensor_set_fmt() 158 mf->colorspace, mf->quantization, in vimc_sensor_set_fmt() 159 mf->xfer_func, mf->ycbcr_enc, in vimc_sensor_set_fmt() 165 *mf = fmt->format; in vimc_sensor_set_fmt()
|