diff options
author | Stefan Roese <sr@denx.de> | 2007-08-16 09:21:48 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-08-16 09:21:48 +0200 |
commit | f31b0aecb5435143ac1cd5cf2abab1f9ef6ba8ea (patch) | |
tree | e41e5d1b64c49fae1de0b6bba62febaba05748cc /include | |
parent | 0e19209767194a97cec6d93dba9e64d1da8d548e (diff) | |
parent | ed4058afc85dc6341fea38cb240beb76296b0d24 (diff) | |
download | u-boot-imx-f31b0aecb5435143ac1cd5cf2abab1f9ef6ba8ea.zip u-boot-imx-f31b0aecb5435143ac1cd5cf2abab1f9ef6ba8ea.tar.gz u-boot-imx-f31b0aecb5435143ac1cd5cf2abab1f9ef6ba8ea.tar.bz2 |
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/sbc8641d.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/sbc8641d.h b/include/configs/sbc8641d.h index 68d31ca..277b611 100644 --- a/include/configs/sbc8641d.h +++ b/include/configs/sbc8641d.h @@ -492,7 +492,7 @@ #define CFG_LOAD_ADDR 0x2000000 /* default load address */ #define CFG_PROMPT "=> " /* 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 */ @@ -513,7 +513,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 @@ -525,7 +525,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 |