From: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
To: Guo Zhengkui <guozhengkui@vivo.com>,
Jacek Anaszewski <jacek.anaszewski@gmail.com>,
Sylwester Nawrocki <s.nawrocki@samsung.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
"moderated list:ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT"
<linux-arm-kernel@lists.infradead.org>,
"open list:ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT"
<linux-media@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>
Cc: zhengkui_guo@outlook.com
Subject: Re: [PATCH v2] media: platform: samsung: s5p-jpeg: replace ternary operator with max()
Date: Fri, 27 May 2022 11:28:06 +0200 [thread overview]
Message-ID: <6531e5e0-d4d5-1a16-5c5c-e8ff443f3275@gmail.com> (raw)
In-Reply-To: <20220518120836.126368-1-guozhengkui@vivo.com>
Hi Guo Zhengkui,
Sorry about the delay.
W dniu 18.05.2022 o 14:08, Guo Zhengkui pisze:
> Fix the following coccicheck warning:
>
> drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c:1712:24-25:
> WARNING opportunity for max()
>
> max() macro is defined in include/linux/minmax.h. It avoids multiple
> evaluations of the arguments when non-constant and performs strict
> type-checking.
>
> Signed-off-by: Guo Zhengkui <guozhengkui@vivo.com>
Acked-by: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
> ---
> v1 -> v2: Change the subject according to Hans Verkuil's suggestion.
>
> drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c b/drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c
> index 456287186ad8..55814041b8d8 100644
> --- a/drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c
> +++ b/drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c
> @@ -1709,7 +1709,7 @@ static int exynos3250_jpeg_try_downscale(struct s5p_jpeg_ctx *ctx,
> w_ratio = ctx->out_q.w / r->width;
> h_ratio = ctx->out_q.h / r->height;
>
> - scale_factor = w_ratio > h_ratio ? w_ratio : h_ratio;
> + scale_factor = max(w_ratio, h_ratio);
> scale_factor = clamp_val(scale_factor, 1, 8);
>
> /* Align scale ratio to the nearest power of 2 */
prev parent reply other threads:[~2022-05-27 9:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-13 13:32 [PATCH] media: platform: " Guo Zhengkui
2022-05-18 9:54 ` Hans Verkuil
2022-05-18 12:08 ` [PATCH v2] media: platform: samsung: s5p-jpeg: " Guo Zhengkui
2022-05-27 9:28 ` Andrzej Pietrasiewicz [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6531e5e0-d4d5-1a16-5c5c-e8ff443f3275@gmail.com \
--to=andrzejtp2010@gmail.com \
--cc=guozhengkui@vivo.com \
--cc=jacek.anaszewski@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=s.nawrocki@samsung.com \
--cc=zhengkui_guo@outlook.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®