lkml.org 
[lkml]   [2008]   [Dec]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    Subject[PATCH] Makefile: disable sparse warning "returning void-valued expression"
    From
    The sparse warning -Wreturn-void ("returning void-valued expression")
    is off by default, but it is enabled with -Wall, so add
    -Wno-return-void to CHECKFLAGS to disable it.

    Signed-off-by: Hannes Eder <hannes@hanneseder.net>
    ---
    Makefile | 3 ++-
    1 files changed, 2 insertions(+), 1 deletions(-)

    diff --git a/Makefile b/Makefile
    index 64f14aa..a5b5e8d 100644
    --- a/Makefile
    +++ b/Makefile
    @@ -321,7 +321,8 @@ KALLSYMS = scripts/kallsyms
    PERL = perl
    CHECK = sparse

    -CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise $(CF)
    +CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
    + -Wbitwise -Wno-return-void $(CF)
    MODFLAGS = -DMODULE
    CFLAGS_MODULE = $(MODFLAGS)
    AFLAGS_MODULE = $(MODFLAGS)

    \
     
     \ /
      Last update: 2008-12-27 22:53    [W:3.419 / U:0.028 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site