2022-04-18 12:51:23

by Julia Lawall

[permalink] [raw]
Subject: Re: [PATCH 3/3] staging: media: zoran: avoid macro argument precedence issues



On Mon, 18 Apr 2022, Aliya Rahmani wrote:

> This patch fixes checkpatch warnings of precedence issues. Added parentheses
> around macro argument 'num'.

You should use the imperative. This "Add" rather than "Added".

The subject line would be better as "add parentheses on macro parameter".
That describes what you did, rather than what you avoided (avoided how?).

julia

>
> Signed-off-by: Aliya Rahmani <[email protected]>
> ---
> drivers/staging/media/zoran/videocodec.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/media/zoran/videocodec.c b/drivers/staging/media/zoran/videocodec.c
> index 19732a47c8bd..925f90fd5885 100644
> --- a/drivers/staging/media/zoran/videocodec.c
> +++ b/drivers/staging/media/zoran/videocodec.c
> @@ -22,7 +22,7 @@ MODULE_PARM_DESC(videocodec_debug, "Debug level (0-4)");
>
> #define dprintk(num, format, args...) \
> do { \
> - if (videocodec_debug >= num) \
> + if (videocodec_debug >= (num)) \
> printk(format, ##args); \
> } while (0)
>
> --
> 2.25.1
>
>
>