diff options
| author | Marek Vasut <marex@denx.de> | 2012-09-23 17:41:23 +0200 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2012-10-15 11:53:47 -0700 | 
| commit | 93ea89f0d979a000e4c47dd8a8991328b2ac8cf7 (patch) | |
| tree | e30e63258ab9208f0bf382dcc8403a0d9c3ef808 /include/configs/km/km_arm.h | |
| parent | 9aed5080834a4e848a88b972738f28dce466b420 (diff) | |
| download | olio-uboot-2014.01-93ea89f0d979a000e4c47dd8a8991328b2ac8cf7.tar.xz olio-uboot-2014.01-93ea89f0d979a000e4c47dd8a8991328b2ac8cf7.zip | |
COMMON: Use __stringify() instead of xstr()
Kill multiple occurances and redeclaration of xstr in favor of __stringify().
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include/configs/km/km_arm.h')
| -rw-r--r-- | include/configs/km/km_arm.h | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/include/configs/km/km_arm.h b/include/configs/km/km_arm.h index 44d537396..549278d8b 100644 --- a/include/configs/km/km_arm.h +++ b/include/configs/km/km_arm.h @@ -91,7 +91,7 @@  #define CONFIG_KM_DEF_ENV_CPU						\  	"boot=bootm ${load_addr_r} - -\0"				\  	"cramfsloadfdt=true\0"						\ -	"u-boot="xstr(CONFIG_HOSTNAME) "/u-boot.kwb\0"			\ +	"u-boot="__stringify(CONFIG_HOSTNAME) "/u-boot.kwb\0"		\  	CONFIG_KM_UPDATE_UBOOT						\  	"" @@ -271,16 +271,16 @@ int get_scl(void);  #if defined CONFIG_KM_ENV_IS_IN_SPI_NOR  #define CONFIG_KM_NEW_ENV						\  	"newenv=sf probe 0;"						\ -		"sf erase " xstr(CONFIG_ENV_OFFSET) " "			\ -		xstr(CONFIG_ENV_TOTAL_SIZE)"\0" +		"sf erase " __stringify(CONFIG_ENV_OFFSET) " "		\ +		__stringify(CONFIG_ENV_TOTAL_SIZE)"\0"  #else  #define CONFIG_KM_NEW_ENV						\  	"newenv=setenv addr 0x100000 && "				\  		"i2c dev 1; mw.b ${addr} 0 4 && "			\ -		"eeprom write " xstr(CONFIG_SYS_DEF_EEPROM_ADDR)	\ -		" ${addr} " xstr(CONFIG_ENV_OFFSET) " 4 && "		\ -		"eeprom write " xstr(CONFIG_SYS_DEF_EEPROM_ADDR)	\ -		" ${addr} " xstr(CONFIG_ENV_OFFSET_REDUND) " 4\0" +		"eeprom write " __stringify(CONFIG_SYS_DEF_EEPROM_ADDR)	\ +		" ${addr} " __stringify(CONFIG_ENV_OFFSET) " 4 && "	\ +		"eeprom write " __stringify(CONFIG_SYS_DEF_EEPROM_ADDR)	\ +		" ${addr} " __stringify(CONFIG_ENV_OFFSET_REDUND) " 4\0"  #endif  /* |