summaryrefslogtreecommitdiffstats
path: root/fs/jffs2/compr_lzari.c
diff options
context:
space:
mode:
authorwdenk <wdenk>2005-05-05 09:51:44 +0000
committerwdenk <wdenk>2005-05-05 09:51:44 +0000
commit412babe304b948e1e3a909f8d2eb091b83f700d5 (patch)
treefde6b10727916e1ec0684bd6a9fa863785ed2169 /fs/jffs2/compr_lzari.c
parent60fc6cbbb7d49895e3ee552539f5375f8f1303b5 (diff)
downloadtalos-obmc-uboot-412babe304b948e1e3a909f8d2eb091b83f700d5.tar.gz
talos-obmc-uboot-412babe304b948e1e3a909f8d2eb091b83f700d5.zip
It's better to handle LZO and LZARI compression mdoes for JFFS2 with
a single #define.
Diffstat (limited to 'fs/jffs2/compr_lzari.c')
-rw-r--r--fs/jffs2/compr_lzari.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jffs2/compr_lzari.c b/fs/jffs2/compr_lzari.c
index a6a708bcd6..828b6e5515 100644
--- a/fs/jffs2/compr_lzari.c
+++ b/fs/jffs2/compr_lzari.c
@@ -50,7 +50,7 @@ All rights reserved. Permission granted for non-commercial use.
#include <config.h>
-#if ((CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_LZARI))
+#if ((CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_LZO_LZARI))
#include <linux/stddef.h>
#include <jffs2/jffs2.h>
@@ -259,4 +259,4 @@ int lzari_decompress(unsigned char *data_in, unsigned char *cpage_out,
{
return Decode(data_in, cpage_out, srclen, destlen);
}
-#endif /* ((CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_LZARI)) */
+#endif /* ((CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_LZO_LZARI)) */
OpenPOWER on IntegriCloud