]> Git Repo - linux.git/commitdiff
ARM: nomadik: remove NAND_NO_READRDY use
authorArnd Bergmann <[email protected]>
Sun, 23 Sep 2012 22:57:22 +0000 (22:57 +0000)
committerArnd Bergmann <[email protected]>
Fri, 28 Sep 2012 20:13:02 +0000 (22:13 +0200)
The nhk8815 board files uses NAND_NO_READRDY in its platform data, but
this macro is getting removed because it was not being used anywhere.

Without this patch, building nhk8815_defconfig results in:

arch/arm/mach-nomadik/board-nhk8815.c:118:6: error: 'NAND_NO_READRDY' undeclared here (not in a function)

Signed-off-by: Arnd Bergmann <[email protected]>
Cc: Alessandro Rubini <[email protected]>
Cc: Linus Walleij <[email protected]>
arch/arm/mach-nomadik/board-nhk8815.c

index f4535a7dadf537d7ffc0a691598db24103ba4ab1..c3841a9a8fa8f7b2f090b1404a2ea3bef2998305 100644 (file)
@@ -112,8 +112,7 @@ static struct mtd_partition nhk8815_partitions[] = {
 static struct nomadik_nand_platform_data nhk8815_nand_data = {
        .parts          = nhk8815_partitions,
        .nparts         = ARRAY_SIZE(nhk8815_partitions),
-       .options        = NAND_COPYBACK | NAND_CACHEPRG | NAND_NO_PADDING \
-                       | NAND_NO_READRDY,
+       .options        = NAND_COPYBACK | NAND_CACHEPRG | NAND_NO_PADDING,
        .init           = nhk8815_nand_init,
 };
 
This page took 0.063859 seconds and 4 git commands to generate.