diff options
| author | Stefan Roese <sr@denx.de> | 2009-07-16 15:13:04 +0200 | 
|---|---|---|
| committer | Scott Wood <scottwood@freescale.com> | 2009-07-16 17:52:03 -0500 | 
| commit | f2f376ab956c17d4a0c42a993133ca25cdc87278 (patch) | |
| tree | ef96e6aa90faa77603968a0cc74a4721e2ad6682 /drivers/mtd/nand/ndfc.c | |
| parent | 12582ac771b0bf3852817c3bfa4be326522a0665 (diff) | |
| download | olio-uboot-2014.01-f2f376ab956c17d4a0c42a993133ca25cdc87278.tar.xz olio-uboot-2014.01-f2f376ab956c17d4a0c42a993133ca25cdc87278.zip | |
nand: ndfc: Remove unnecessary #ifdef's
Now that the 4xx NAND driver ndfc is moved to the common NAND driver
directory we don't need this #ifdef's anymore.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Scott Wood <scottwood@freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'drivers/mtd/nand/ndfc.c')
| -rw-r--r-- | drivers/mtd/nand/ndfc.c | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c index 971e2ae6c..528b22b49 100644 --- a/drivers/mtd/nand/ndfc.c +++ b/drivers/mtd/nand/ndfc.c @@ -30,10 +30,6 @@   */  #include <common.h> - -#if defined(CONFIG_CMD_NAND) && !defined(CONFIG_NAND_LEGACY) && \ -    defined(CONFIG_NAND_NDFC) -  #include <nand.h>  #include <linux/mtd/ndfc.h>  #include <linux/mtd/nand_ecc.h> @@ -219,5 +215,3 @@ int board_nand_init(struct nand_chip *nand)  	return 0;  } - -#endif |