diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:31:07 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:04:21 +0200 |
commit | ef0df52ab49eea4a30c15087fd27d54c1d946f2c (patch) | |
tree | 08aebce9dda28e1f7521b3c5d2b095d9b395d807 /include/configs/stxssa.h | |
parent | 866e3089bfc826bb4dc74637f8aad87a3bab79fc (diff) | |
download | u-boot-imx-ef0df52ab49eea4a30c15087fd27d54c1d946f2c.zip u-boot-imx-ef0df52ab49eea4a30c15087fd27d54c1d946f2c.tar.gz u-boot-imx-ef0df52ab49eea4a30c15087fd27d54c1d946f2c.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in STx board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/stxssa.h')
-rw-r--r-- | include/configs/stxssa.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/stxssa.h b/include/configs/stxssa.h index c88d534..f480bd5 100644 --- a/include/configs/stxssa.h +++ b/include/configs/stxssa.h @@ -357,7 +357,7 @@ */ #define CFG_LONGHELP /* undef to save memory */ #define CFG_PROMPT "SSA=> " /* Monitor Command Prompt */ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */ #else #define CFG_CBSIZE 256 /* Console I/O Buffer Size */ @@ -378,7 +378,7 @@ /* Cache Configuration */ #define CFG_DCACHE_SIZE 32768 #define CFG_CACHELINE_SIZE 32 -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) #define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */ #endif @@ -390,7 +390,7 @@ #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */ #define BOOTFLAG_WARM 0x02 /* Software reboot */ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */ #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ #endif |