Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2bd03e49 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

include/linux/dcache.h: remove semicolons from HASH_LEN_DECLARE



A little cleanup - the invocation site provdes the semicolon.

Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3c973b0e
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -27,10 +27,10 @@ struct vfsmount;


/* The hash is always the low bits of hash_len */
/* The hash is always the low bits of hash_len */
#ifdef __LITTLE_ENDIAN
#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))
 #define bytemask_from_count(cnt)	(~(~0ul << (cnt)*8))
#else
#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))
 #define bytemask_from_count(cnt)	(~(~0ul >> (cnt)*8))
#endif
#endif