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

Commit afd54c68 authored by Fabian Frederick's avatar Fabian Frederick Committed by Jan Kara
Browse files

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: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent 83a3a569
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -197,10 +197,10 @@ const struct reiserfs_key MIN_KEY = { 0, 0, {{0, 0},} };

/* Maximal possible key. It is never in the tree. */
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)},}
};

/*