diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-01-25 07:54:47 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-14 01:11:00 +0100 |
commit | 1b769881750030f10743808b9d6013e11f559350 (patch) | |
tree | e0dd6eff6a904307be295c1c9f5a900fde589096 /include/configs | |
parent | 0c9d42e6b0b83d507335a291e3ea99240038f4b9 (diff) |
Fix remaining CONFIG_COMMANDS
update comments
Fix coding style
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/munices.h | 2 | ||||
-rw-r--r-- | include/configs/trizepsiv.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/munices.h b/include/configs/munices.h index 2372b5763..38b27bb3a 100644 --- a/include/configs/munices.h +++ b/include/configs/munices.h @@ -48,7 +48,7 @@ #define CONFIG_CMD_PING #define CONFIG_CMD_REGINFO -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) # define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */ #endif diff --git a/include/configs/trizepsiv.h b/include/configs/trizepsiv.h index 84998d439..7a15d97cb 100644 --- a/include/configs/trizepsiv.h +++ b/include/configs/trizepsiv.h @@ -140,7 +140,7 @@ #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */ /* #define CONFIG_INITRD_TAG 1 */ -#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 |