summaryrefslogtreecommitdiffstats
path: root/fs/jffs2/jffs2_1pass.c
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2008-10-31 13:51:12 -0500
committerScott Wood <scottwood@freescale.com>2008-10-31 13:51:12 -0500
commit2f77c7f45b9a37ef265a8dbe3c18efa706fed214 (patch)
treeb57841574f9f5772c778b126f09e55492766c55a /fs/jffs2/jffs2_1pass.c
parentc57fc28947e248fb03c49a28b467686299895055 (diff)
downloadtalos-obmc-uboot-2f77c7f45b9a37ef265a8dbe3c18efa706fed214.tar.gz
talos-obmc-uboot-2f77c7f45b9a37ef265a8dbe3c18efa706fed214.zip
JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
Reported-by: Alessandro Rubini <rubini-list@gnudd.com> Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'fs/jffs2/jffs2_1pass.c')
-rw-r--r--fs/jffs2/jffs2_1pass.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c
index 0177268c3c..920d2fd453 100644
--- a/fs/jffs2/jffs2_1pass.c
+++ b/fs/jffs2/jffs2_1pass.c
@@ -449,20 +449,18 @@ static inline void *get_node_mem(u32 off)
static inline void put_fl_mem(void *buf)
{
-#if defined(CONFIG_JFFS2_NAND) && \
- defined(CONFIG_CMD_NAND)
struct mtdids *id = current_part->dev->id;
- if (id->type == MTD_DEV_TYPE_NAND)
+ switch (id->type) {
+#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
+ case MTD_DEV_TYPE_NAND:
return put_fl_mem_nand(buf);
#endif
-
#if defined(CONFIG_CMD_ONENAND)
- struct mtdids *id = current_part->dev->id;
-
- if (id->type == MTD_DEV_TYPE_ONENAND)
+ case MTD_DEV_TYPE_ONENAND:
return put_fl_mem_onenand(buf);
#endif
+ }
}
/* Compression names */
OpenPOWER on IntegriCloud