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/ima3-mx53.h | |
parent | 9aed5080834a4e848a88b972738f28dce466b420 (diff) | |
download | u-boot-imx-93ea89f0d979a000e4c47dd8a8991328b2ac8cf7.zip u-boot-imx-93ea89f0d979a000e4c47dd8a8991328b2ac8cf7.tar.gz u-boot-imx-93ea89f0d979a000e4c47dd8a8991328b2ac8cf7.tar.bz2 |
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/ima3-mx53.h')
-rw-r--r-- | include/configs/ima3-mx53.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/configs/ima3-mx53.h b/include/configs/ima3-mx53.h index dbc59b9..af505dc 100644 --- a/include/configs/ima3-mx53.h +++ b/include/configs/ima3-mx53.h @@ -180,8 +180,6 @@ */ #define HOSTNAME ima3-mx53 -#define xstr(s) str(s) -#define str(s) #s #define CONFIG_HOSTNAME ima3-mx53 #define CONFIG_EXTRA_ENV_SETTINGS \ @@ -203,9 +201,9 @@ "loadaddr=70800000\0" \ "kernel_addr_r=70800000\0" \ "ramdisk_addr_r=71000000\0" \ - "hostname=" xstr(CONFIG_HOSTNAME) "\0" \ - "bootfile=" xstr(CONFIG_HOSTNAME) "/uImage\0" \ - "ramdisk_file=" xstr(CONFIG_HOSTNAME) "/uRamdisk\0" \ + "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \ + "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \ + "ramdisk_file=" __stringify(CONFIG_HOSTNAME) "/uRamdisk\0" \ "mmcargs=setenv bootargs root=${mmcroot} " \ "rootfstype=${mmcrootfstype}\0" \ "mmcroot=/dev/mmcblk0p3 rw\0" \ @@ -234,7 +232,7 @@ "run satargs addip addtty addmtd addmisc;" \ "sata init;ext2load sata 0:1 ${kernel_addr_r} " \ "${satafile};bootm\0" \ - "u-boot=" xstr(CONFIG_HOSTNAME) "/u-boot.imx\0" \ + "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.imx\0" \ "uimage=uImage\0" \ "load=tftp ${loadaddr} ${u-boot}\0" \ "uboot_addr=0xf0001000\0" \ |