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

Commit 310bf8f7 authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds
Browse files

fs/reiserfs/stree.c: remove obsolete __constant



__constant_cpu_to_le32 converted to cpu_to_le32

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Cc: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ae0a50ab
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -228,10 +228,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),
	cpu_to_le32(0xffffffff),
	__constant_cpu_to_le32(0xffffffff),
	cpu_to_le32(0xffffffff),
	{{__constant_cpu_to_le32(0xffffffff),
	{{cpu_to_le32(0xffffffff),
	  __constant_cpu_to_le32(0xffffffff)},}
	  cpu_to_le32(0xffffffff)},}
};
};


/* Get delimiting key of the buffer by looking for it in the buffers in the path, starting from the bottom
/* Get delimiting key of the buffer by looking for it in the buffers in the path, starting from the bottom