Browse Source

reiserfs: remove obsolete __constant_cpu_to_le32

__constant_cpu_to_le32 converted to cpu_to_le32

Cc: reiserfs-devel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Jan Kara <jack@suse.cz>
Fabian Frederick 11 years ago
parent
commit
afd54c6881
1 changed files with 4 additions and 4 deletions
  1. 4 4
      fs/reiserfs/stree.c

+ 4 - 4
fs/reiserfs/stree.c

@@ -197,10 +197,10 @@ const struct reiserfs_key MIN_KEY = { 0, 0, {{0, 0},} };
 
 
 /* Maximal possible key. It is never in the tree. */
 /* Maximal possible key. It is never in the tree. */
 static const struct reiserfs_key MAX_KEY = {
 static const struct reiserfs_key MAX_KEY = {
-	__constant_cpu_to_le32(0xffffffff),
-	__constant_cpu_to_le32(0xffffffff),
-	{{__constant_cpu_to_le32(0xffffffff),
-	  __constant_cpu_to_le32(0xffffffff)},}
+	cpu_to_le32(0xffffffff),
+	cpu_to_le32(0xffffffff),
+	{{cpu_to_le32(0xffffffff),
+	  cpu_to_le32(0xffffffff)},}
 };
 };
 
 
 /*
 /*