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-powerpc.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-powerpc.h')
| -rw-r--r-- | include/configs/km/km-powerpc.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/include/configs/km/km-powerpc.h b/include/configs/km/km-powerpc.h index 506755ba0..bd5bdbcb4 100644 --- a/include/configs/km/km-powerpc.h +++ b/include/configs/km/km-powerpc.h @@ -80,14 +80,14 @@  	"cramfsloadfdt="						\  		"cramfsload ${fdt_addr_r} "				\  		"fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb\0"		\ -	"fdt_addr_r=" xstr(CONFIG_KM_FDT_ADDR) "\0"			\ -	"u-boot="xstr(CONFIG_HOSTNAME) "/u-boot.bin\0"			\ +	"fdt_addr_r=" __stringify(CONFIG_KM_FDT_ADDR) "\0"		\ +	"u-boot="__stringify(CONFIG_HOSTNAME) "/u-boot.bin\0"		\  	"update="							\ -		"protect off " xstr(BOOTFLASH_START) " +${filesize} && "\ -		"erase " xstr(BOOTFLASH_START) "  +${filesize} && "	\ -		"cp.b ${load_addr_r} " xstr(BOOTFLASH_START)		\ +		"protect off " __stringify(BOOTFLASH_START) " +${filesize} && "\ +		"erase " __stringify(BOOTFLASH_START) "  +${filesize} && "\ +		"cp.b ${load_addr_r} " __stringify(BOOTFLASH_START)	\  		"  ${filesize} && "					\ -		"protect on " xstr(BOOTFLASH_START) "  +${filesize}\0"  \ +		"protect on " __stringify(BOOTFLASH_START) "  +${filesize}\0"\  	""  #endif /* __CONFIG_KEYMILE_POWERPC_H */ |