]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - include/linux/dcache.h
include/linux/dcache.h: remove semicolons from HASH_LEN_DECLARE
[karo-tx-linux.git] / include / linux / dcache.h
index d67ae119cf4eb9d3143d5019108f1d7fbf252b88..7781ce11050353a44cd7a3982c97949651956103 100644 (file)
@@ -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