diff options
author | Scott Wood <scottwood@freescale.com> | 2009-04-01 15:02:13 -0500 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2009-07-16 19:07:47 -0500 |
commit | be33b046b549ad88c204c209508cd7657232ffbd (patch) | |
tree | 5e7c1c74c77a0dbaf7e4f17d3ed047d85beae414 /include/nand.h | |
parent | fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3 (diff) | |
download | u-boot-imx-be33b046b549ad88c204c209508cd7657232ffbd.zip u-boot-imx-be33b046b549ad88c204c209508cd7657232ffbd.tar.gz u-boot-imx-be33b046b549ad88c204c209508cd7657232ffbd.tar.bz2 |
Remove legacy NAND and disk on chip code.
Legacy NAND had been scheduled for removal. Any boards that use this
were already not building in the previous release due to an #error.
The disk on chip code in common/cmd_doc.c relies on legacy NAND,
and it has also been removed. There is newer disk on chip code
in drivers/mtd/nand; someone with access to hardware and sufficient
time and motivation can try to get that working, but for now disk
on chip is not supported.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'include/nand.h')
-rw-r--r-- | include/nand.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/nand.h b/include/nand.h index 23f3ca1..2a81597 100644 --- a/include/nand.h +++ b/include/nand.h @@ -26,7 +26,6 @@ extern void nand_init(void); -#ifndef CONFIG_NAND_LEGACY #include <linux/mtd/compat.h> #include <linux/mtd/mtd.h> #include <linux/mtd/nand.h> @@ -130,5 +129,4 @@ void board_nand_select_device(struct nand_chip *nand, int chip); __attribute__((noreturn)) void nand_boot(void); -#endif /* !CONFIG_NAND_LEGACY */ #endif |