diff options
author | wdenk <wdenk> | 2005-05-05 09:51:44 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-05-05 09:51:44 +0000 |
commit | 412babe304b948e1e3a909f8d2eb091b83f700d5 (patch) | |
tree | fde6b10727916e1ec0684bd6a9fa863785ed2169 /fs/jffs2/compr_lzari.c | |
parent | 60fc6cbbb7d49895e3ee552539f5375f8f1303b5 (diff) | |
download | u-boot-imx-412babe304b948e1e3a909f8d2eb091b83f700d5.zip u-boot-imx-412babe304b948e1e3a909f8d2eb091b83f700d5.tar.gz u-boot-imx-412babe304b948e1e3a909f8d2eb091b83f700d5.tar.bz2 |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jffs2/compr_lzari.c b/fs/jffs2/compr_lzari.c index a6a708b..828b6e5 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)) */ |