Home
last modified time | relevance | path

Searched refs:mf (Results 1 - 25 of 164) sorted by relevance

1234567

/kernel/linux/linux-5.10/drivers/hid/
H A Dhid-mf.c37 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(sizeof(struct mf_device), GFP_KERNEL); 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 in mf_init()
[all...]
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-mf.c37 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(sizeof(struct mf_device), GFP_KERNEL); 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 in mf_init()
[all...]
/kernel/linux/linux-5.10/drivers/clk/imx/
H A Dclk-pllv3.c309 struct clk_pllv3_vf610_mf mf) in clk_pllv3_vf610_mf_to_rate()
314 temp64 *= mf.mfn; in clk_pllv3_vf610_mf_to_rate()
315 do_div(temp64, mf.mfd); in clk_pllv3_vf610_mf_to_rate()
317 return (parent_rate * mf.mfi) + temp64; in clk_pllv3_vf610_mf_to_rate()
323 struct clk_pllv3_vf610_mf mf; in clk_pllv3_vf610_rate_to_mf() local
326 mf.mfi = (rate >= 22 * parent_rate) ? 22 : 20; in clk_pllv3_vf610_rate_to_mf()
327 mf.mfd = 0x3fffffff; /* use max supported value for best accuracy */ in clk_pllv3_vf610_rate_to_mf()
329 if (rate <= parent_rate * mf.mfi) in clk_pllv3_vf610_rate_to_mf()
330 mf.mfn = 0; in clk_pllv3_vf610_rate_to_mf()
331 else if (rate >= parent_rate * (mf in clk_pllv3_vf610_rate_to_mf()
308 clk_pllv3_vf610_mf_to_rate(unsigned long parent_rate, struct clk_pllv3_vf610_mf mf) clk_pllv3_vf610_mf_to_rate() argument
348 struct clk_pllv3_vf610_mf mf; clk_pllv3_vf610_recalc_rate() local
360 struct clk_pllv3_vf610_mf mf = clk_pllv3_vf610_rate_to_mf(*prate, rate); clk_pllv3_vf610_round_rate() local
369 struct clk_pllv3_vf610_mf mf = clk_pllv3_vf610_set_rate() local
[all...]
/kernel/linux/linux-6.6/drivers/clk/imx/
H A Dclk-pllv3.c310 struct clk_pllv3_vf610_mf mf) in clk_pllv3_vf610_mf_to_rate()
315 temp64 *= mf.mfn; in clk_pllv3_vf610_mf_to_rate()
316 do_div(temp64, mf.mfd); in clk_pllv3_vf610_mf_to_rate()
318 return (parent_rate * mf.mfi) + temp64; in clk_pllv3_vf610_mf_to_rate()
324 struct clk_pllv3_vf610_mf mf; in clk_pllv3_vf610_rate_to_mf() local
327 mf.mfi = (rate >= 22 * parent_rate) ? 22 : 20; in clk_pllv3_vf610_rate_to_mf()
328 mf.mfd = 0x3fffffff; /* use max supported value for best accuracy */ in clk_pllv3_vf610_rate_to_mf()
330 if (rate <= parent_rate * mf.mfi) in clk_pllv3_vf610_rate_to_mf()
331 mf.mfn = 0; in clk_pllv3_vf610_rate_to_mf()
332 else if (rate >= parent_rate * (mf in clk_pllv3_vf610_rate_to_mf()
309 clk_pllv3_vf610_mf_to_rate(unsigned long parent_rate, struct clk_pllv3_vf610_mf mf) clk_pllv3_vf610_mf_to_rate() argument
349 struct clk_pllv3_vf610_mf mf; clk_pllv3_vf610_recalc_rate() local
361 struct clk_pllv3_vf610_mf mf = clk_pllv3_vf610_rate_to_mf(*prate, rate); clk_pllv3_vf610_round_rate() local
370 struct clk_pllv3_vf610_mf mf = clk_pllv3_vf610_set_rate() local
[all...]
/kernel/linux/linux-5.10/drivers/media/platform/exynos4-is/
H A Dfimc-isp.c126 struct v4l2_mbus_framefmt *mf = &fmt->format; in fimc_isp_subdev_get_fmt() local
129 *mf = *v4l2_subdev_get_try_format(sd, cfg, 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 in fimc_isp_subdev_get_fmt()
162 struct v4l2_mbus_framefmt *mf = &fmt->format; __isp_subdev_try_format() local
199 struct v4l2_mbus_framefmt *mf = &fmt->format; fimc_isp_subdev_set_fmt() local
[all...]
H A Dfimc-capture.c767 struct v4l2_mbus_framefmt *mf = &sfmt.format; in fimc_pipeline_try_format() local
784 ffmt = fimc_find_format(NULL, mf->code != 0 ? &mf->code : NULL, in fimc_pipeline_try_format()
793 mf->code = tfmt->code = ffmt->mbus_code; in fimc_pipeline_try_format()
806 mf->code = tfmt->code; in fimc_pipeline_try_format()
819 if (mf->code != tfmt->code) in fimc_pipeline_try_format()
823 tfmt->width = mf->width; in fimc_pipeline_try_format()
824 tfmt->height = mf->height; in fimc_pipeline_try_format()
830 mf->code = ffmt->mbus_code; in fimc_pipeline_try_format()
831 if (mf in fimc_pipeline_try_format()
945 struct v4l2_mbus_framefmt *mf; __video_try_or_set_format() local
1476 struct v4l2_mbus_framefmt *mf; fimc_subdev_get_fmt() local
1515 struct v4l2_mbus_framefmt *mf = &fmt->format; fimc_subdev_set_fmt() local
[all...]
/kernel/linux/linux-6.6/drivers/media/platform/samsung/exynos4-is/
H A Dfimc-isp.c126 struct v4l2_mbus_framefmt *mf = &fmt->format; in fimc_isp_subdev_get_fmt() local
129 *mf = *v4l2_subdev_get_try_format(sd, 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 in fimc_isp_subdev_get_fmt()
162 struct v4l2_mbus_framefmt *mf = &fmt->format; __isp_subdev_try_format() local
200 struct v4l2_mbus_framefmt *mf = &fmt->format; fimc_isp_subdev_set_fmt() local
[all...]
/kernel/linux/linux-5.10/drivers/media/i2c/
H A Ds5k6a3.c90 struct v4l2_mbus_framefmt *mf) in find_sensor_format()
95 if (mf->code == s5k6a3_formats[i].code) in find_sensor_format()
112 static void s5k6a3_try_format(struct v4l2_mbus_framefmt *mf) in s5k6a3_try_format() argument
116 fmt = find_sensor_format(mf); in s5k6a3_try_format()
117 mf->code = fmt->code; in s5k6a3_try_format()
118 mf->field = V4L2_FIELD_NONE; in s5k6a3_try_format()
119 v4l_bound_align_image(&mf->width, S5K6A3_SENSOR_MIN_WIDTH, in s5k6a3_try_format()
121 &mf->height, S5K6A3_SENSOR_MIN_HEIGHT, in s5k6a3_try_format()
140 struct v4l2_mbus_framefmt *mf; in s5k6a3_set_fmt() local
144 mf in s5k6a3_set_fmt()
89 find_sensor_format( struct v4l2_mbus_framefmt *mf) find_sensor_format() argument
158 struct v4l2_mbus_framefmt *mf; s5k6a3_get_fmt() local
[all...]
H A Dmt9m001.c327 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m001_get_fmt() local
333 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in mt9m001_get_fmt()
334 format->format = *mf; in mt9m001_get_fmt()
338 mf->width = mt9m001->rect.width; in mt9m001_get_fmt()
339 mf->height = mt9m001->rect.height; in mt9m001_get_fmt()
340 mf->code = mt9m001->fmt->code; in mt9m001_get_fmt()
341 mf->colorspace = mt9m001->fmt->colorspace; in mt9m001_get_fmt()
342 mf->field = V4L2_FIELD_NONE; in mt9m001_get_fmt()
343 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m001_get_fmt()
344 mf in mt9m001_get_fmt()
350 mt9m001_s_fmt(struct v4l2_subdev *sd, const struct mt9m001_datafmt *fmt, struct v4l2_mbus_framefmt *mf) mt9m001_s_fmt() argument
382 struct v4l2_mbus_framefmt *mf = &format->format; mt9m001_set_fmt() local
[all...]
H A Dtw9910.c752 struct v4l2_mbus_framefmt *mf = &format->format; in tw9910_get_fmt() local
765 mf->width = priv->scale->width; in tw9910_get_fmt()
766 mf->height = priv->scale->height; in tw9910_get_fmt()
767 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in tw9910_get_fmt()
768 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in tw9910_get_fmt()
769 mf->field = V4L2_FIELD_INTERLACED_BT; in tw9910_get_fmt()
775 struct v4l2_mbus_framefmt *mf) in tw9910_s_fmt()
777 u32 width = mf->width, height = mf->height; in tw9910_s_fmt()
780 WARN_ON(mf in tw9910_s_fmt()
774 tw9910_s_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) tw9910_s_fmt() argument
803 struct v4l2_mbus_framefmt *mf = &format->format; tw9910_set_fmt() local
[all...]
H A Dov6650.c541 struct v4l2_mbus_framefmt *mf = &format->format; in ov6650_get_fmt() local
549 *mf = ov6650_def_fmt; in ov6650_get_fmt()
553 mf->width = cfg->try_fmt.width; in ov6650_get_fmt()
554 mf->height = cfg->try_fmt.height; in ov6650_get_fmt()
555 mf->code = cfg->try_fmt.code; in ov6650_get_fmt()
558 mf->width = priv->rect.width >> priv->half_scale; in ov6650_get_fmt()
559 mf->height = priv->rect.height >> priv->half_scale; in ov6650_get_fmt()
560 mf->code = priv->code; in ov6650_get_fmt()
573 static int ov6650_s_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) in ov6650_s_fmt() argument
577 bool half_scale = !is_unscaled_ok(mf in ov6650_s_fmt()
674 struct v4l2_mbus_framefmt *mf = &format->format; ov6650_set_fmt() local
893 struct v4l2_mbus_framefmt mf = ov6650_def_fmt; ov6650_video_probe() local
[all...]
H A Dsr030pc30.c394 static int sr030pc30_try_frame_size(struct v4l2_mbus_framefmt *mf) in sr030pc30_try_frame_size() argument
401 int err = abs(fsize->width - mf->width) in sr030pc30_try_frame_size()
402 + abs(fsize->height - mf->height); in sr030pc30_try_frame_size()
410 mf->width = match->width; in sr030pc30_try_frame_size()
411 mf->height = match->height; in sr030pc30_try_frame_size()
486 struct v4l2_mbus_framefmt *mf; in sr030pc30_get_fmt() local
492 mf = &format->format; in sr030pc30_get_fmt()
497 mf->width = info->curr_win->width; in sr030pc30_get_fmt()
498 mf->height = info->curr_win->height; in sr030pc30_get_fmt()
499 mf in sr030pc30_get_fmt()
507 try_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) try_fmt() argument
533 struct v4l2_mbus_framefmt *mf; sr030pc30_set_fmt() local
[all...]
H A Dnoon010pc30.c358 static int noon010_try_frame_size(struct v4l2_mbus_framefmt *mf, in noon010_try_frame_size() argument
367 int err = abs(fsize->width - mf->width) in noon010_try_frame_size()
368 + abs(fsize->height - mf->height); in noon010_try_frame_size()
377 mf->width = match->width; in noon010_try_frame_size()
378 mf->height = match->height; in noon010_try_frame_size()
506 struct v4l2_mbus_framefmt *mf; in noon010_get_fmt() local
510 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in noon010_get_fmt()
511 fmt->format = *mf; in noon010_get_fmt()
515 mf = &fmt->format; in noon010_get_fmt()
518 mf in noon010_get_fmt()
529 noon010_try_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) noon010_try_fmt() argument
548 struct v4l2_mbus_framefmt *mf; noon010_set_fmt() local
640 struct v4l2_mbus_framefmt *mf = v4l2_subdev_get_try_format(sd, fh->pad, 0); noon010_open() local
[all...]
H A Ds5k4ecgx.c499 static int s5k4ecgx_try_frame_size(struct v4l2_mbus_framefmt *mf, in s5k4ecgx_try_frame_size() argument
508 int err = abs(fsize->size.width - mf->width) in s5k4ecgx_try_frame_size()
509 + abs(fsize->size.height - mf->height); in s5k4ecgx_try_frame_size()
517 mf->width = match->size.width; in s5k4ecgx_try_frame_size()
518 mf->height = match->size.height; in s5k4ecgx_try_frame_size()
542 struct v4l2_mbus_framefmt *mf; in s5k4ecgx_get_fmt() local
546 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in s5k4ecgx_get_fmt()
547 fmt->format = *mf; in s5k4ecgx_get_fmt()
552 mf = &fmt->format; in s5k4ecgx_get_fmt()
555 mf in s5k4ecgx_get_fmt()
565 s5k4ecgx_try_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) s5k4ecgx_try_fmt() argument
584 struct v4l2_mbus_framefmt *mf; s5k4ecgx_set_fmt() local
689 struct v4l2_mbus_framefmt *mf = v4l2_subdev_get_try_format(sd, fh->pad, 0); s5k4ecgx_open() local
[all...]
H A Drj54n1cb0c.c609 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 in rj54n1_set_fmt() local
[all...]
H A Dmt9m111.c524 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m111_get_fmt() local
532 mf = v4l2_subdev_get_try_format(sd, cfg, format->pad); in mt9m111_get_fmt()
533 format->format = *mf; in mt9m111_get_fmt()
540 mf->width = mt9m111->width; in mt9m111_get_fmt()
541 mf->height = mt9m111->height; in mt9m111_get_fmt()
542 mf->code = mt9m111->fmt->code; in mt9m111_get_fmt()
543 mf->colorspace = mt9m111->fmt->colorspace; in mt9m111_get_fmt()
544 mf->field = V4L2_FIELD_NONE; in mt9m111_get_fmt()
545 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m111_get_fmt()
546 mf in mt9m111_get_fmt()
630 struct v4l2_mbus_framefmt *mf = &format->format; mt9m111_set_fmt() local
[all...]
/kernel/linux/linux-6.6/drivers/media/i2c/
H A Ds5k6a3.c90 struct v4l2_mbus_framefmt *mf) in find_sensor_format()
95 if (mf->code == s5k6a3_formats[i].code) in find_sensor_format()
112 static void s5k6a3_try_format(struct v4l2_mbus_framefmt *mf) in s5k6a3_try_format() argument
116 fmt = find_sensor_format(mf); in s5k6a3_try_format()
117 mf->code = fmt->code; in s5k6a3_try_format()
118 mf->field = V4L2_FIELD_NONE; in s5k6a3_try_format()
119 v4l_bound_align_image(&mf->width, S5K6A3_SENSOR_MIN_WIDTH, in s5k6a3_try_format()
121 &mf->height, S5K6A3_SENSOR_MIN_HEIGHT, in s5k6a3_try_format()
141 struct v4l2_mbus_framefmt *mf; in s5k6a3_set_fmt() local
145 mf in s5k6a3_set_fmt()
89 find_sensor_format( struct v4l2_mbus_framefmt *mf) find_sensor_format() argument
159 struct v4l2_mbus_framefmt *mf; s5k6a3_get_fmt() local
[all...]
H A Dmt9m001.c328 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m001_get_fmt() local
334 mf = v4l2_subdev_get_try_format(sd, sd_state, 0); in mt9m001_get_fmt()
335 format->format = *mf; in mt9m001_get_fmt()
339 mf->width = mt9m001->rect.width; in mt9m001_get_fmt()
340 mf->height = mt9m001->rect.height; in mt9m001_get_fmt()
341 mf->code = mt9m001->fmt->code; in mt9m001_get_fmt()
342 mf->colorspace = mt9m001->fmt->colorspace; in mt9m001_get_fmt()
343 mf->field = V4L2_FIELD_NONE; in mt9m001_get_fmt()
344 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m001_get_fmt()
345 mf in mt9m001_get_fmt()
351 mt9m001_s_fmt(struct v4l2_subdev *sd, const struct mt9m001_datafmt *fmt, struct v4l2_mbus_framefmt *mf) mt9m001_s_fmt() argument
383 struct v4l2_mbus_framefmt *mf = &format->format; mt9m001_set_fmt() local
[all...]
H A Dtw9910.c752 struct v4l2_mbus_framefmt *mf = &format->format; in tw9910_get_fmt() local
765 mf->width = priv->scale->width; in tw9910_get_fmt()
766 mf->height = priv->scale->height; in tw9910_get_fmt()
767 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in tw9910_get_fmt()
768 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in tw9910_get_fmt()
769 mf->field = V4L2_FIELD_INTERLACED_BT; in tw9910_get_fmt()
775 struct v4l2_mbus_framefmt *mf) in tw9910_s_fmt()
777 u32 width = mf->width, height = mf->height; in tw9910_s_fmt()
780 WARN_ON(mf in tw9910_s_fmt()
774 tw9910_s_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) tw9910_s_fmt() argument
803 struct v4l2_mbus_framefmt *mf = &format->format; tw9910_set_fmt() local
[all...]
H A Drj54n1cb0c.c609 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 in rj54n1_set_fmt() local
[all...]
H A Dmt9m111.c523 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m111_get_fmt() local
531 mf = v4l2_subdev_get_try_format(sd, sd_state, format->pad); in mt9m111_get_fmt()
532 format->format = *mf; in mt9m111_get_fmt()
539 mf->width = mt9m111->width; in mt9m111_get_fmt()
540 mf->height = mt9m111->height; in mt9m111_get_fmt()
541 mf->code = mt9m111->fmt->code; in mt9m111_get_fmt()
542 mf->colorspace = mt9m111->fmt->colorspace; in mt9m111_get_fmt()
543 mf->field = V4L2_FIELD_NONE; in mt9m111_get_fmt()
544 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m111_get_fmt()
545 mf in mt9m111_get_fmt()
629 struct v4l2_mbus_framefmt *mf = &format->format; mt9m111_set_fmt() local
[all...]
/kernel/linux/linux-5.10/drivers/message/fusion/
H A Dmptscsih.c88 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, SCSIIOReply_t *pScsiReply);
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()
575 * @mf: Pointer to original MPT request frame
586 mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HD argument
1034 SCSIIORequest_t *mf = NULL; mptscsih_flush_running_cmds() local
1079 SCSIIORequest_t *mf = NULL; mptscsih_search_running_cmds() local
1317 MPT_FRAME_HDR *mf; mptscsih_qcmd() local
1517 MPT_FRAME_HDR *mf; mptscsih_IssueTaskMgmt() local
1685 MPT_FRAME_HDR *mf; mptscsih_abort() local
2054 mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr) mptscsih_taskmgmt_complete() argument
2406 mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SCSIIOReply_t *pScsiReply) mptscsih_copy_sense_data() argument
2778 MPT_FRAME_HDR *mf; mptscsih_do_cmd() local
[all...]
/kernel/linux/linux-6.6/drivers/message/fusion/
H A Dmptscsih.c88 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, SCSIIOReply_t *pScsiReply);
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()
575 * @mf: Pointer to original MPT request frame
586 mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HD argument
1034 SCSIIORequest_t *mf = NULL; mptscsih_flush_running_cmds() local
1079 SCSIIORequest_t *mf = NULL; mptscsih_search_running_cmds() local
1316 MPT_FRAME_HDR *mf; mptscsih_qcmd() local
1516 MPT_FRAME_HDR *mf; mptscsih_IssueTaskMgmt() local
1684 MPT_FRAME_HDR *mf; mptscsih_abort() local
2053 mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr) mptscsih_taskmgmt_complete() argument
2405 mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SCSIIOReply_t *pScsiReply) mptscsih_copy_sense_data() argument
2777 MPT_FRAME_HDR *mf; mptscsih_do_cmd() local
[all...]
/kernel/linux/linux-6.6/drivers/media/platform/nxp/imx8-isi/
H A Dimx8-isi-pipe.c455 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 in mxc_isi_pipe_set_fmt()
[all...]
/kernel/linux/linux-5.10/drivers/media/platform/s3c-camif/
H A Dcamif-capture.c1215 struct v4l2_mbus_framefmt *mf = &fmt->format; in s3c_camif_subdev_get_fmt() local
1218 mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad); in s3c_camif_subdev_get_fmt()
1219 fmt->format = *mf; in s3c_camif_subdev_get_fmt()
1228 *mf = camif->mbus_fmt; in s3c_camif_subdev_get_fmt()
1233 mf->width = camif->camif_crop.width; in s3c_camif_subdev_get_fmt()
1234 mf->height = camif->camif_crop.height; in s3c_camif_subdev_get_fmt()
1235 mf->code = camif->mbus_fmt.code; in s3c_camif_subdev_get_fmt()
1240 mf->field = V4L2_FIELD_NONE; in s3c_camif_subdev_get_fmt()
1241 mf->colorspace = V4L2_COLORSPACE_JPEG; in s3c_camif_subdev_get_fmt()
1246 struct v4l2_mbus_framefmt *mf, in in __camif_subdev_try_format()
1245 __camif_subdev_try_format(struct camif_dev *camif, struct v4l2_mbus_framefmt *mf, int pad) __camif_subdev_try_format() argument
1283 struct v4l2_mbus_framefmt *mf = &fmt->format; s3c_camif_subdev_set_fmt() local
1351 struct v4l2_mbus_framefmt *mf = &camif->mbus_fmt; s3c_camif_subdev_get_selection() local
1385 struct v4l2_mbus_framefmt *mf = &camif->mbus_fmt; __camif_try_crop() local
[all...]

Completed in 27 milliseconds

1234567