lkml.org 
[lkml]   [2020]   [Nov]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] [SCSI] sym53c8xx: remove trailing semicolon in macro definition
From
Date
On Fri, 2020-11-27 at 10:29 -0800, trix@redhat.com wrote:
> From: Tom Rix <trix@redhat.com>
>
> The macro use will already have a semicolon.
>
> Signed-off-by: Tom Rix <trix@redhat.com>
> ---
> drivers/scsi/sym53c8xx_2/sym_glue.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/scsi/sym53c8xx_2/sym_glue.c
> b/drivers/scsi/sym53c8xx_2/sym_glue.c
> index d9a045f9858c..f3b3345c1766 100644
> --- a/drivers/scsi/sym53c8xx_2/sym_glue.c
> +++ b/drivers/scsi/sym53c8xx_2/sym_glue.c
> @@ -1001,12 +1001,12 @@ static int is_keyword(char *ptr, int len,
> char *verb)
> #define SKIP_SPACES(ptr, len)
> \
> if ((arg_len = sym_skip_spaces(ptr, len)) < 1)
> \
> return -EINVAL;
> \
> - ptr += arg_len; len -= arg_len;
> + ptr += arg_len; len -= arg_len
>
> #define GET_INT_ARG(ptr, len, v)
> \
> if (!(arg_len = get_int_arg(ptr, len, &(v))))
> \
> return -EINVAL;
> \
> - ptr += arg_len; len -= arg_len;
> + ptr += arg_len; len -= arg_len

Those macros have the wrong form which can lead to actual bugs and this
cosmetic change does nothing to fix it. If the goal here is to get the
code base into better shape, please fix the bugs.

James


\
 
 \ /
  Last update: 2020-11-27 19:39    [W:0.025 / U:2.456 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site