From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 148A5C433DB for ; Tue, 5 Jan 2021 15:33:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DF8E922AAB for ; Tue, 5 Jan 2021 15:33:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728078AbhAEPdd (ORCPT ); Tue, 5 Jan 2021 10:33:33 -0500 Received: from perceval.ideasonboard.com ([213.167.242.64]:38064 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725838AbhAEPdd (ORCPT ); Tue, 5 Jan 2021 10:33:33 -0500 Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 822988F0; Tue, 5 Jan 2021 16:29:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1609860590; bh=WE14Z/owoxTvRsqkyNO8VOAbaRyq35yCR/MxT+ShzEw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VoJISzTKTVT16pohZW9xKRWgjT3dTi09n3b/Bol0D4tGXKCRY/93YilL9aSOm4cgb 4ffNQQ8ZTA+5NL+Y3LLLC7smzvPNWxNErk7ju3cX2sik+k9zRDUR7cLuFY9BNdqNNt eigCFAkZV/7LF5n1XC6GF2Mig5eVOs9VwHMfqzc0= From: Laurent Pinchart To: linux-media@vger.kernel.org Cc: Rui Miguel Silva , Steve Longerbeam , Philipp Zabel , Ezequiel Garcia Subject: [PATCH 23/75] media: imx: capture: Pass v4l2_pix_format to __capture_legacy_try_fmt() Date: Tue, 5 Jan 2021 17:28:00 +0200 Message-Id: <20210105152852.5733-24-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210105152852.5733-1-laurent.pinchart@ideasonboard.com> References: <20210105152852.5733-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org The __capture_legacy_try_fmt() function only needs the v4l2_pix_format embedded in the v4l2_format argument it receives. Pass it the v4l2_pix_format directly, allowing on caller to allocate a smaller structure on the stack. Signed-off-by: Laurent Pinchart --- drivers/staging/media/imx/imx-media-capture.c | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/drivers/staging/media/imx/imx-media-capture.c b/drivers/staging/media/imx/imx-media-capture.c index 7932b7f0f4f2..d34cbf0a0fa1 100644 --- a/drivers/staging/media/imx/imx-media-capture.c +++ b/drivers/staging/media/imx/imx-media-capture.c @@ -232,7 +232,7 @@ static int capture_legacy_enum_fmt_vid_cap(struct file *file, void *fh, static int __capture_legacy_try_fmt(struct capture_priv *priv, struct v4l2_subdev_format *fmt_src, - struct v4l2_format *f, + struct v4l2_pix_format *pixfmt, const struct imx_media_pixfmt **retcc, struct v4l2_rect *compose) { @@ -246,7 +246,7 @@ static int __capture_legacy_try_fmt(struct capture_priv *priv, fmt_sel = (cc->cs == IPUV3_COLORSPACE_YUV) ? PIXFMT_SEL_YUV : PIXFMT_SEL_RGB; - fourcc = f->fmt.pix.pixelformat; + fourcc = pixfmt->pixelformat; cc = imx_media_find_pixel_format(fourcc, fmt_sel); if (!cc) { @@ -261,7 +261,7 @@ static int __capture_legacy_try_fmt(struct capture_priv *priv, } /* allow IDMAC interweave but enforce field order from source */ - if (V4L2_FIELD_IS_INTERLACED(f->fmt.pix.field)) { + if (V4L2_FIELD_IS_INTERLACED(pixfmt->field)) { switch (fmt_src->format.field) { case V4L2_FIELD_SEQ_TB: fmt_src->format.field = V4L2_FIELD_INTERLACED_TB; @@ -274,7 +274,7 @@ static int __capture_legacy_try_fmt(struct capture_priv *priv, } } - imx_media_mbus_fmt_to_pix_fmt(&f->fmt.pix, &fmt_src->format, cc); + imx_media_mbus_fmt_to_pix_fmt(pixfmt, &fmt_src->format, cc); if (retcc) *retcc = cc; @@ -302,7 +302,8 @@ static int capture_legacy_try_fmt_vid_cap(struct file *file, void *fh, if (ret) return ret; - return __capture_legacy_try_fmt(priv, &fmt_src, f, NULL, NULL); + return __capture_legacy_try_fmt(priv, &fmt_src, &f->fmt.pix, NULL, + NULL); } static int capture_legacy_s_fmt_vid_cap(struct file *file, void *fh, @@ -323,8 +324,8 @@ static int capture_legacy_s_fmt_vid_cap(struct file *file, void *fh, if (ret) return ret; - ret = __capture_legacy_try_fmt(priv, &fmt_src, f, &priv->vdev.cc, - &priv->vdev.compose); + ret = __capture_legacy_try_fmt(priv, &fmt_src, &f->fmt.pix, + &priv->vdev.cc, &priv->vdev.compose); if (ret) return ret; @@ -534,7 +535,7 @@ static int capture_validate_fmt(struct capture_priv *priv) struct v4l2_subdev_format fmt_src; const struct imx_media_pixfmt *cc; struct v4l2_rect compose; - struct v4l2_format f; + struct v4l2_pix_format pixfmt; int ret; fmt_src.pad = priv->src_sd_pad; @@ -543,14 +544,14 @@ static int capture_validate_fmt(struct capture_priv *priv) if (ret) return ret; - v4l2_fill_pix_format(&f.fmt.pix, &fmt_src.format); + v4l2_fill_pix_format(&pixfmt, &fmt_src.format); - ret = __capture_legacy_try_fmt(priv, &fmt_src, &f, &cc, &compose); + ret = __capture_legacy_try_fmt(priv, &fmt_src, &pixfmt, &cc, &compose); if (ret) return ret; - return (priv->vdev.fmt.width != f.fmt.pix.width || - priv->vdev.fmt.height != f.fmt.pix.height || + return (priv->vdev.fmt.width != pixfmt.width || + priv->vdev.fmt.height != pixfmt.height || priv->vdev.cc->cs != cc->cs || priv->vdev.compose.width != compose.width || priv->vdev.compose.height != compose.height) ? -EINVAL : 0; -- Regards, Laurent Pinchart