From patchwork Thu Aug 5 10:38:41 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: atmel_nand: Fix warning: 'part_probes' defined but not used Date: Thu, 05 Aug 2010 00:38:41 -0000 From: =?utf-8?q?Andreas_Bie=C3=9Fmann?= X-Patchwork-Id: 60947 Message-Id: <1281004721-397-1-git-send-email-biessmann@corscience.de> To: linux-kernel@vger.kernel.org Cc: David Brownell , trivial@kernel.org, Sandeep Paulraj , linux-mtd@lists.infradead.org, Andrew Morton , David Woodhouse , =?UTF-8?q?Andreas=20Bie=C3=9Fmann?= This patch fixes drivers/mtd/nand/atmel_nand.c:372: warning: 'part_probes' defined but not used which is issued when CONFIG_MTD_PARTITIONS is defined but CONFIG_MTD_CMDLINE_PARTS not. Signed-off-by: Andreas Bießmann --- Resent this patch as a trivial one cause it does only fix a warning which is seen in very rare cases. There is no functionality change here! I think this is the definition of a trivial patch. In addition no one has commented my last submission of this patch. drivers/mtd/nand/atmel_nand.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index 04d3088..ccce0f0 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c @@ -364,7 +364,7 @@ static void atmel_nand_hwctl(struct mtd_info *mtd, int mode) } } -#ifdef CONFIG_MTD_PARTITIONS +#ifdef CONFIG_MTD_CMDLINE_PARTS static const char *part_probes[] = { "cmdlinepart", NULL }; #endif