aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToralf Förster <toralf.foerster@gmx.de>2008-05-26 20:35:46 +0200
committerDavid Woodhouse <dwmw2@infradead.org>2008-06-04 17:27:20 +0100
commit437d0d299f0e08954c3cb680221d7e888e1a857f (patch)
tree3b0124d1d8e4a0831cb7022c91a0ad317cc6d85c
parent[MTD] [NOR] Add support for Eon EN29SL800B[BT] NOR flash chips (diff)
downloadlinux-dev-437d0d299f0e08954c3cb680221d7e888e1a857f.tar.xz
linux-dev-437d0d299f0e08954c3cb680221d7e888e1a857f.zip
[MTD] [NAND] fix 2 "unused variable" warnings in cafe_nand.c
Signed-off-by: Toralf Förster <toralf.foerster@gmx.de> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
-rw-r--r--drivers/mtd/nand/cafe_nand.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/mtd/nand/cafe_nand.c b/drivers/mtd/nand/cafe_nand.c
index da6ceaa80ba1..95345d051579 100644
--- a/drivers/mtd/nand/cafe_nand.c
+++ b/drivers/mtd/nand/cafe_nand.c
@@ -626,10 +626,12 @@ static int __devinit cafe_nand_probe(struct pci_dev *pdev,
{
struct mtd_info *mtd;
struct cafe_priv *cafe;
- struct mtd_partition *parts;
uint32_t ctrl;
- int nr_parts;
int err = 0;
+#ifdef CONFIG_MTD_PARTITIONS
+ struct mtd_partition *parts;
+ int nr_parts;
+#endif
/* Very old versions shared the same PCI ident for all three
functions on the chip. Verify the class too... */