Re: checkpatch problem

From: Andy Whitcroft
Date: Tue Sep 07 2010 - 14:00:38 EST


On Tue, Sep 07, 2010 at 02:09:42PM +0100, David Howells wrote:
>
> Hi,
>
> Checkpatch generates the following messages for inline asm strings:
>
> WARNING: unnecessary whitespace before a quoted newline
> #49: FILE: arch/m32r/include/asm/irqflags.h:31:
> + "ld24 %0, #0 ; Use 32-bit insn. \n\t"
>
> however, inline asm is more readable if I can tabulate things, including the
> newline markers:
>
> asm volatile (
> "ld24 %0, #0 ; Use 32-bit insn. \n\t"
> "mvfc %1, psw ; No interrupt can be accepted here. \n\t"
> "mvtc %0, psw \n\t"
> "and3 %0, %1, #0xffbf \n\t"
> "mvtc %0, psw \n\t"
> : "=&r" (tmpreg0), "=&r" (tmpreg1)
> :
> : "cbit", "memory");
>
> Can you please fix it, even if it's only to permit multiple TAB chars before
> '\n'.
>
> Whilst this check is probaly fine for strings to be displayed in some way, this
> doesn't necessarily apply to inline asm strings. Furthermore, the extra white
> space does not impact the resulting binary.

A tricky one to know how to detect it as different. Often we do not
have the asm markers to hint us to change style. This affects us often
as gcc abuses the meaning of almost every character and has different
spacing for them too.

Will think on it.

-apw
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/