diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-04-23 07:07:17 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-04-23 07:07:17 -0400 |
commit | 566865a2a4791c9290155f651ee0c2c606db0b1d (patch) | |
tree | e4dd0114aa60857937a98dc89aca201afc0c8595 /fs/jffs2/wbuf.c | |
parent | 3e67fe4543333048e486d7f360a0e2ae5d76c053 (diff) |
[JFFS2] Fix cross-endian build.
When compiling a LE-capable JFFS2 on PowerPC, wbuf.c fails to compile:
fs/jffs2/wbuf.c:973: error: braced-group within expression allowed only inside a function
fs/jffs2/wbuf.c:973: error: initializer element is not constant
fs/jffs2/wbuf.c:973: error: (near initialization for ‘oob_cleanmarker.magic’)
fs/jffs2/wbuf.c:974: error: braced-group within expression allowed only inside a function
fs/jffs2/wbuf.c:974: error: initializer element is not constant
fs/jffs2/wbuf.c:974: error: (near initialization for ‘oob_cleanmarker.nodetype’)
fs/jffs2/wbuf.c:975: error: braced-group within expression allowed only inside a function
fs/jffs2/wbuf.c:976: error: initializer element is not constant
fs/jffs2/wbuf.c:976: error: (near initialization for ‘oob_cleanmarker.totlen’)
Provide constant_cpu_to_je{16,32} functions, and use them for initialising the
offending structure.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/wbuf.c')
-rw-r--r-- | fs/jffs2/wbuf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jffs2/wbuf.c b/fs/jffs2/wbuf.c index f9da0e755a3e..f87f11af7086 100644 --- a/fs/jffs2/wbuf.c +++ b/fs/jffs2/wbuf.c | |||
@@ -970,9 +970,9 @@ exit: | |||
970 | 970 | ||
971 | static const struct jffs2_unknown_node oob_cleanmarker = | 971 | static const struct jffs2_unknown_node oob_cleanmarker = |
972 | { | 972 | { |
973 | .magic = cpu_to_je16(JFFS2_MAGIC_BITMASK), | 973 | .magic = constant_cpu_to_je16(JFFS2_MAGIC_BITMASK), |
974 | .nodetype = cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER), | 974 | .nodetype = constant_cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER), |
975 | .totlen = cpu_to_je32(8) | 975 | .totlen = constant_cpu_to_je32(8) |
976 | }; | 976 | }; |
977 | 977 | ||
978 | /* | 978 | /* |