From: Stefan Roese <sr@denx.de>
Date: Sat, 18 Aug 2007 12:37:52 +0000 (+0200)
Subject: ColdFire: Fix some remaining problems with CFG_CMD_
X-Git-Tag: v2025.01-rc5-pxa1908~22718^2~24^2~2^2
X-Git-Url: http://git.dujemihanovic.xyz/html/%7B%7B%20.RelPermalink%20%7D%7D?a=commitdiff_plain;h=26667b7fa05a8bf2fc65fb9f3230b02b1a10c367;p=u-boot.git

ColdFire: Fix some remaining problems with CFG_CMD_

Signed-off-by: Stefan Roese <sr@denx.de>
---

diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c
index 7686080f35..ef15a006cd 100644
--- a/common/cmd_bdinfo.c
+++ b/common/cmd_bdinfo.c
@@ -237,7 +237,7 @@ int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 	print_str ("inpfreq",		strmhz(buf, bd->bi_inpfreq));
 	print_str ("vcofreq",		strmhz(buf, bd->bi_vcofreq));
 #endif
-#if defined(CFG_CMD_NET)
+#if defined(CONFIG_CMD_NET)
 	puts ("ethaddr     =");
 	for (i=0; i<6; ++i) {
 		printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
@@ -266,7 +266,7 @@ int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 
 	puts ("\nip_addr     = ");
 	print_IPaddr (bd->bi_ip_addr);
-#endif	/* CONFIG_CMD_NET */
+#endif
 	printf ("\nbaudrate    = %d bps\n", bd->bi_baudrate);
 
 	return 0;
diff --git a/doc/README.m54455evb b/doc/README.m54455evb
index c768fc8a40..119a19d897 100644
--- a/doc/README.m54455evb
+++ b/doc/README.m54455evb
@@ -78,7 +78,7 @@ CONFIG_MCFRTC		-- define to use common CF RTC driver
 CFG_MCFRTC_BASE		-- provide base address for RTC in immap.h
 CFG_RTC_OSCILLATOR	-- define RTC clock frequency
 RTC_DEBUG		-- define to show RTC debug message
-CFG_CMD_DATE		-- enable to use date feature in u-boot
+CONFIG_CMD_DATE		-- enable to use date feature in u-boot
 
 CONFIG_MCFFEC		-- define to use common CF FEC driver
 CONFIG_NET_MULTI	-- define to use multi FEC in u-boot
diff --git a/include/configs/idmr.h b/include/configs/idmr.h
index 3ec4a79440..404e88a4fc 100644
--- a/include/configs/idmr.h
+++ b/include/configs/idmr.h
@@ -235,8 +235,8 @@
 						"2m(rootfs),"	\
 						"-(user)";
 
-#if (CONFIG_COMMANDS & CFG_CMD_MII)
-#error MII commands don't work on iDMR board and sholud not be enabled.
-#endif /* (CONFIG_COMMANDS & CFG_CMD_MII) */
+#if defined(CONFIG_CMD_MII)
+#error "MII commands don't work on iDMR board and should not be enabled."
+#endif
 
 #endif /* _IDMR_H */