From: Andrew Morton Date: Thu, 14 Jan 2016 23:17:53 +0000 (-0800) Subject: include/linux/dcache.h: remove semicolons from HASH_LEN_DECLARE X-Git-Tag: v4.5-rc1~94^2~94 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2bd03e49d66775da8cebdcc8d5bec7d68512ae87;p=platform%2Fkernel%2Flinux-exynos.git include/linux/dcache.h: remove semicolons from HASH_LEN_DECLARE A little cleanup - the invocation site provdes the semicolon. Cc: Rasmus Villemoes Cc: Al Viro Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/dcache.h b/include/linux/dcache.h index d67ae11..7781ce11 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -27,10 +27,10 @@ struct vfsmount; /* The hash is always the low bits of hash_len */ #ifdef __LITTLE_ENDIAN - #define HASH_LEN_DECLARE u32 hash; u32 len; + #define HASH_LEN_DECLARE u32 hash; u32 len #define bytemask_from_count(cnt) (~(~0ul << (cnt)*8)) #else - #define HASH_LEN_DECLARE u32 len; u32 hash; + #define HASH_LEN_DECLARE u32 len; u32 hash #define bytemask_from_count(cnt) (~(~0ul >> (cnt)*8)) #endif