diff options
author | Anatolij Gustschin <agust@denx.de> | 2014-10-24 20:13:51 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-27 17:54:13 -0400 |
commit | 4a8c3f693ef2b50b5db5a95a2c32531b35d31dc0 (patch) | |
tree | e8af75d48f723e6b4d79571e40b237917d2d15ae /include/configs/o2dnt-common.h | |
parent | f39c5d1e6a2080c6913e11fb30899c8b2adfb0f3 (diff) | |
download | u-boot-imx-4a8c3f693ef2b50b5db5a95a2c32531b35d31dc0.zip u-boot-imx-4a8c3f693ef2b50b5db5a95a2c32531b35d31dc0.tar.gz u-boot-imx-4a8c3f693ef2b50b5db5a95a2c32531b35d31dc0.tar.bz2 |
Use __stringify() instead of xstr()
Some boards still use xstr(). Replace remaining occurrences
of xstr() by commonly used __stringify().
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'include/configs/o2dnt-common.h')
-rw-r--r-- | include/configs/o2dnt-common.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/configs/o2dnt-common.h b/include/configs/o2dnt-common.h index 133dc6f..183c449 100644 --- a/include/configs/o2dnt-common.h +++ b/include/configs/o2dnt-common.h @@ -114,9 +114,6 @@ #undef CONFIG_BOOTARGS -#define xstr(s) str(s) -#define str(s) #s - #if !defined(CONFIG_CONSOLE_DEV) #define CONFIG_CONSOLE_DEV "ttyPSC1" #endif @@ -158,7 +155,7 @@ "kernel_addr_r=600000\0" \ "initrd_high=0x03e00000\0" \ "memlimit=mem="CONFIG_BOARD_MEM_LIMIT"M\0" \ - "memtest=mtest 0x00100000 "xstr(CONFIG_SYS_MEMTEST_END)" 0 1\0" \ + "memtest=mtest 0x00100000 "__stringify(CONFIG_SYS_MEMTEST_END)" 0 1\0" \ "netdev=eth0\0" \ "nfsargs=setenv bootargs root=/dev/nfs rw " \ "nfsroot=${serverip}:${rootpath}\0" \ @@ -182,7 +179,7 @@ "unlock=yes\0" \ "post=echo !!! "CONFIG_BOARD_NAME" POWER ON SELF TEST !!!;" \ "setenv bootdelay 1;" \ - "crc32 "xstr(CONFIG_SYS_TEXT_BASE)" " \ + "crc32 "__stringify(CONFIG_SYS_TEXT_BASE)" " \ BOARD_POST_CRC32_END";" \ "setenv bootcmd "CONFIG_BOARD_BOOTCMD";saveenv;reset\0" |