diff options
author | Scott Wood <scottwood@freescale.com> | 2009-04-01 15:33:24 -0500 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2009-04-03 15:27:26 -0500 |
commit | 99067b08f4a0ce20ff337a35211239f334d8f451 (patch) | |
tree | 311ff7bf47aa9f38c01b33f713a431dd2ffe5e67 /drivers/mtd | |
parent | 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf (diff) | |
download | u-boot-imx-99067b08f4a0ce20ff337a35211239f334d8f451.zip u-boot-imx-99067b08f4a0ce20ff337a35211239f334d8f451.tar.gz u-boot-imx-99067b08f4a0ce20ff337a35211239f334d8f451.tar.bz2 |
Noisily disable the legacy NAND subsystem.
Legacy NAND is marked for feature removal after April 2009 (i.e. this
upcoming release). There are still several boards that reference it
(though many do so only for disk-on-chip support which has been silently
disabled for a while now). These boards will now fail to build
with #error, though the code is still there if the user removes #error.
The plan is to remove the code outright in the next release, along with
any board code that refers to it (such as board/esd/common/auto_update.c).
Also, remove the legacy NAND API description from README.nand.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand_legacy/nand_legacy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mtd/nand_legacy/nand_legacy.c b/drivers/mtd/nand_legacy/nand_legacy.c index 441780a..d9ae9c7 100644 --- a/drivers/mtd/nand_legacy/nand_legacy.c +++ b/drivers/mtd/nand_legacy/nand_legacy.c @@ -18,6 +18,9 @@ #include <linux/mtd/nand_ids.h> #include <jffs2/jffs2.h> +#error Legacy NAND is deprecated. Please convert to the current NAND interface. +#error This code will be removed outright in the next release. + #ifdef CONFIG_OMAP1510 void archflashwp(void *archdata, int wp); #endif |