From: Robert P. J. Day Date: Wed, 7 Mar 2007 23:33:25 +0000 (-0500) Subject: [MTD] [NAND] Correct misspelled preprocessor variable. X-Git-Tag: v3.12-rc1~31111^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=89e2bf61da9d7664293a57100a419f8116252607;p=kernel%2Fkernel-generic.git [MTD] [NAND] Correct misspelled preprocessor variable. Replace the apparently misspelled preprocessor variable "MTD_NAND_DISKONCHIP_BBTWRITE" with the correct form "CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE". Signed-off-by: Robert P. J. Day Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/nand/diskonchip.c b/drivers/mtd/nand/diskonchip.c index 12608c1..595208f 100644 --- a/drivers/mtd/nand/diskonchip.c +++ b/drivers/mtd/nand/diskonchip.c @@ -114,7 +114,7 @@ module_param(no_autopart, int, 0); static int show_firmware_partition = 0; module_param(show_firmware_partition, int, 0); -#ifdef MTD_NAND_DISKONCHIP_BBTWRITE +#ifdef CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE static int inftl_bbt_write = 1; #else static int inftl_bbt_write = 0;