mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
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>
This commit is contained in:
parent
83a3a56936
commit
afd54c6881
@ -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)},}
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user