diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-06 17:38:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:17 -0400 |
commit | 310bf8f74927d0b945cd3e11dc5cef961ec04fd1 (patch) | |
tree | 5455fb83baa28969db7884f4c0ad680180b80902 /fs/reiserfs | |
parent | ae0a50aba005acf35e94ef2a75baa29d26ba8eb0 (diff) |
fs/reiserfs/stree.c: remove obsolete __constant
__constant_cpu_to_le32 converted to cpu_to_le32
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r-- | fs/reiserfs/stree.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/reiserfs/stree.c b/fs/reiserfs/stree.c index b14706a05d52..615cd9ab7940 100644 --- a/fs/reiserfs/stree.c +++ b/fs/reiserfs/stree.c | |||
@@ -228,10 +228,10 @@ const struct reiserfs_key MIN_KEY = { 0, 0, {{0, 0},} }; | |||
228 | 228 | ||
229 | /* Maximal possible key. It is never in the tree. */ | 229 | /* Maximal possible key. It is never in the tree. */ |
230 | static const struct reiserfs_key MAX_KEY = { | 230 | static const struct reiserfs_key MAX_KEY = { |
231 | __constant_cpu_to_le32(0xffffffff), | 231 | cpu_to_le32(0xffffffff), |
232 | __constant_cpu_to_le32(0xffffffff), | 232 | cpu_to_le32(0xffffffff), |
233 | {{__constant_cpu_to_le32(0xffffffff), | 233 | {{cpu_to_le32(0xffffffff), |
234 | __constant_cpu_to_le32(0xffffffff)},} | 234 | cpu_to_le32(0xffffffff)},} |
235 | }; | 235 | }; |
236 | 236 | ||
237 | /* Get delimiting key of the buffer by looking for it in the buffers in the path, starting from the bottom | 237 | /* Get delimiting key of the buffer by looking for it in the buffers in the path, starting from the bottom |