diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-03-15 17:36:41 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-16 01:18:45 +0100 |
commit | 0210cff3d079d97b2156b13685ee8de368e68a1a (patch) | |
tree | 0a3c3b1941b1976db5623922368b2346af872a4a | |
parent | b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0 (diff) | |
download | u-boot-imx-0210cff3d079d97b2156b13685ee8de368e68a1a.zip u-boot-imx-0210cff3d079d97b2156b13685ee8de368e68a1a.tar.gz u-boot-imx-0210cff3d079d97b2156b13685ee8de368e68a1a.tar.bz2 |
cramfs: Fix ifdef
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r-- | fs/cramfs/uncompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cramfs/uncompress.c b/fs/cramfs/uncompress.c index 2e906eb..a9c0b7d 100644 --- a/fs/cramfs/uncompress.c +++ b/fs/cramfs/uncompress.c @@ -25,7 +25,7 @@ #include <watchdog.h> #include <zlib.h> -#if defined(CONFIG_CMD_JFFS2) +#if defined(CONFIG_CMD_CRAMFS) static z_stream stream; |