summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorToralf Förster <toralf.foerster@gmx.de>2008-05-26 18:35:46 (GMT)
committerDavid Woodhouse <dwmw2@infradead.org>2008-06-04 16:27:20 (GMT)
commit437d0d299f0e08954c3cb680221d7e888e1a857f (patch)
tree3b0124d1d8e4a0831cb7022c91a0ad317cc6d85c /drivers
parent1b0b30acf3fc76e5d4d278fa5a8c9c6ac9898745 (diff)
downloadlinux-fsl-qoriq-437d0d299f0e08954c3cb680221d7e888e1a857f.tar.xz
[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>
Diffstat (limited to 'drivers')
-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 da6ceaa..95345d0 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... */