[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230123215105.fbfzxueegtnbu4ym@pengutronix.de>
Date: Mon, 23 Jan 2023 22:51:05 +0100
From: Marco Felsch <m.felsch@...gutronix.de>
To: Brent Pappas <bpappas@...pasbrent.com>
Cc: slongerbeam@...il.com, festevam@...il.com, p.zabel@...gutronix.de,
gregkh@...uxfoundation.org, s.hauer@...gutronix.de,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org,
linux-imx@....com, kernel@...gutronix.de, mchehab@...nel.org,
shawnguo@...nel.org, linux-arm-kernel@...ts.infradead.org,
linux-media@...r.kernel.org
Subject: Re: [PATCH] media: imx: imx-media-fim: Replace macro icap_enabled()
with function
Hi,
thank you for the patch.
On 23-01-23, Brent Pappas wrote:
> Replace the macro icap_enabled() with a static function to comply
> with Linux coding style standards.
>
> Signed-off-by: Brent Pappas <bpappas@...pasbrent.com>
> ---
> drivers/staging/media/imx/imx-media-fim.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/media/imx/imx-media-fim.c b/drivers/staging/media/imx/imx-media-fim.c
> index fb6590dcfc36..ccb35d098a19 100644
> --- a/drivers/staging/media/imx/imx-media-fim.c
> +++ b/drivers/staging/media/imx/imx-media-fim.c
> @@ -68,7 +68,10 @@ struct imx_media_fim {
> bool stream_on;
> };
>
> -#define icap_enabled(fim) ((fim)->icap_flags != IRQ_TYPE_NONE)
> +static bool icap_enabled(struct imx_media_fim *fim)
> +{
> + return fim->icap_flags != IRQ_TYPE_NONE;
> +}
Nit: I would make it inline but recent compiler may do the job for us.
Reviewed-by: Marco Felsch <m.felsch@...gutronix.de>
Regards,
Marco
> static void update_fim_nominal(struct imx_media_fim *fim,
> const struct v4l2_fract *fi)
> --
> 2.34.1
>
>
>
Powered by blists - more mailing lists