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/MPC8308RDB.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/MPC8308RDB.h')
| -rw-r--r-- | include/configs/MPC8308RDB.h | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/include/configs/MPC8308RDB.h b/include/configs/MPC8308RDB.h index 2d48dde80..a1fbece8e 100644 --- a/include/configs/MPC8308RDB.h +++ b/include/configs/MPC8308RDB.h @@ -556,9 +556,6 @@  #define CONFIG_BOOTDELAY	5	/* -1 disables auto-boot */ -#define xstr(s)	str(s) -#define str(s)	#s -  #define	CONFIG_EXTRA_ENV_SETTINGS					\  	"netdev=eth0\0"							\  	"consoledev=ttyS0\0"						\ @@ -592,10 +589,10 @@  		"bootm ${kernel_addr_r} - ${fdt_addr_r}\0"		\  	"bootcmd=run flash_self\0"					\  	"load=tftp ${loadaddr} ${u-boot}\0"				\ -	"update=protect off " xstr(CONFIG_SYS_MONITOR_BASE)		\ -		" +${filesize};era " xstr(CONFIG_SYS_MONITOR_BASE)	\ +	"update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE)	\ +		" +${filesize};era " __stringify(CONFIG_SYS_MONITOR_BASE)\  		" +${filesize};cp.b ${fileaddr} "			\ -		xstr(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0"		\ +		__stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0"	\  	"upd=run load update\0"						\  #endif	/* __CONFIG_H */ |