[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] checkpatch: Don't WARN about missing spaces in
From: |
Blue Swirl |
Subject: |
Re: [Qemu-devel] [PATCH] checkpatch: Don't WARN about missing spaces in audio files |
Date: |
Sat, 11 Feb 2012 09:37:25 +0000 |
On Thu, Feb 9, 2012 at 14:59, Andreas Färber <address@hidden> wrote:
> Disable warnings for spaces before opening parenthesis in
> hw/{ac97,adlib,cs4231a,es1370,gus,sb16}.c.
>
> Signed-off-by: Andreas Färber <address@hidden>
> Cc: Blue Swirl <address@hidden>
> Cc: malc <address@hidden>
> ---
> scripts/checkpatch.pl | 5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 8850a5f..5433736 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -246,6 +246,8 @@ our $allowed_asm_includes = qr{(?x:
> )};
> # memory.h: ARM has a custom one
>
> +our $audio_files =
> qr{hw/ac97.c|hw/adlib.c|hw/cs4231a.c|hw/es1370.c|hw/gus.c|hw/sb16.c};
> +
> sub build_types {
> my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
> my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
> @@ -1966,6 +1968,9 @@ sub process {
> asm|__asm__)$/x)
> {
>
> + # malc wants to keep spacing consistent in the audio
> files.
> + } elsif ($realfile =~ /($audio_files)/) {
> +
> # cpp #define statements have non-optional spaces, ie
> # if there is a space between the name and the open
> # parenthesis it is simply not a parameter group.
> --
> 1.7.7
>
NACK to such special casing.
- Re: [Qemu-devel] [PATCH] checkpatch: Don't WARN about missing spaces in audio files, (continued)
- Re: [Qemu-devel] [PATCH] checkpatch: Don't WARN about missing spaces in audio files, Andreas Färber, 2012/02/18
- Re: [Qemu-devel] [PATCH] checkpatch: Don't WARN about missing spaces in audio files, Eric Blake, 2012/02/18
- Re: [Qemu-devel] [PATCH] checkpatch: Don't WARN about missing spaces in audio files, Blue Swirl, 2012/02/18
- [Qemu-devel] [PATCH] astyle: Formatting rules for QEMU, Stefan Weil, 2012/02/18
- Re: [Qemu-devel] [PATCH] astyle: Formatting rules for QEMU, Blue Swirl, 2012/02/18
- Re: [Qemu-devel] [PATCH] astyle: Formatting rules for QEMU, Stefan Weil, 2012/02/18
Re: [Qemu-devel] [PATCH] checkpatch: Don't WARN about missing spaces in audio files,
Blue Swirl <=