aboutsummaryrefslogtreecommitdiffstats
path: root/fs/reiserfs
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-05-03 16:33:24 -0400
committerJan Kara <jack@suse.cz>2014-05-14 17:57:46 -0400
commitafd54c6881a51fe9cef843b36d289ae74a8f14bb (patch)
tree2875a3dbe465105caf3062f90bbda42478bbef08 /fs/reiserfs
parent83a3a56936667e8dbf2a43ceb380bc5a08d5fa0b (diff)
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>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r--fs/reiserfs/stree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/reiserfs/stree.c b/fs/reiserfs/stree.c
index dfb02febf814..dd44468edc2b 100644
--- a/fs/reiserfs/stree.c
+++ b/fs/reiserfs/stree.c
@@ -197,10 +197,10 @@ const struct reiserfs_key MIN_KEY = { 0, 0, {{0, 0},} };
197 197
198/* Maximal possible key. It is never in the tree. */ 198/* Maximal possible key. It is never in the tree. */
199static const struct reiserfs_key MAX_KEY = { 199static const struct reiserfs_key MAX_KEY = {
200 __constant_cpu_to_le32(0xffffffff), 200 cpu_to_le32(0xffffffff),
201 __constant_cpu_to_le32(0xffffffff), 201 cpu_to_le32(0xffffffff),
202 {{__constant_cpu_to_le32(0xffffffff), 202 {{cpu_to_le32(0xffffffff),
203 __constant_cpu_to_le32(0xffffffff)},} 203 cpu_to_le32(0xffffffff)},}
204}; 204};
205 205
206/* 206/*