lkml.org 
[lkml]   [2006]   [Feb]   [1]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    DateWed, 01 Feb 2006 18:02:26 +0900
    FromAkinobu Mita <>
    Subject[patch 02/44] parisc: add ()-pair in __ffz() macro
    Noticed by Michael Tokarev
    
    add missing ()-pair in __ffz() macro for parisc
    
    Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
     include/asm-parisc/bitops.h |    2 +-
     1 files changed, 1 insertion(+), 1 deletion(-)
    Index: 2.6-git/include/asm-parisc/bitops.h
    ===================================================================
    --- 2.6-git.orig/include/asm-parisc/bitops.h
    +++ 2.6-git/include/asm-parisc/bitops.h
    @@ -220,7 +220,7 @@ static __inline__ unsigned long __ffs(un
     }
     
     /* Undefined if no bit is zero. */
    -#define ffz(x)	__ffs(~x)
    +#define ffz(x)	__ffs(~(x))
     
     /*
      * ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set)
    --
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at  http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at  http://www.tux.org/lkml/
    
    
    \
     
     \ /
      Last update: 2006-02-01 09:28    [from the cache]
    ©2003-2008