summaryrefslogtreecommitdiffstats
path: root/board/ids8247
diff options
context:
space:
mode:
authorJon Loeliger <jdl@jdl.com>2007-06-11 19:03:19 -0500
committerWolfgang Denk <wd@denx.de>2007-07-04 00:34:58 +0200
commit5e378003d592ea828ec69d6defcd4de79096dd5c (patch)
treee3687f00dcedf80e11f84caa3d519684c6843bd8 /board/ids8247
parent737184114ec9c9e0ab94d6713536126073bd2472 (diff)
downloadtalos-obmc-uboot-5e378003d592ea828ec69d6defcd4de79096dd5c.tar.gz
talos-obmc-uboot-5e378003d592ea828ec69d6defcd4de79096dd5c.zip
board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/ids8247')
-rw-r--r--board/ids8247/ids8247.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ids8247/ids8247.c b/board/ids8247/ids8247.c
index 7b9a83d0f9..3e7ef5ade9 100644
--- a/board/ids8247/ids8247.c
+++ b/board/ids8247/ids8247.c
@@ -300,7 +300,7 @@ int misc_init_r (void)
gd->bd->bi_flashstart = 0xff800000;
}
-#if (CONFIG_COMMANDS & CFG_CMD_NAND)
+#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND)
extern ulong
nand_probe (ulong physadr);
OpenPOWER on IntegriCloud