diff options
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 c88d534fc..f480bd530 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 |