diff options
author | Marek Vasut <marex@denx.de> | 2012-09-23 17:41:25 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-15 11:53:47 -0700 |
commit | 51926d5ee0be029fb45f10f42756df97279f8ad3 (patch) | |
tree | 651bfdf030853d4499f6729b7eb8b57f0247e38e /include/configs/tegra20-common.h | |
parent | 5368c55d4ca463405225dd184ecabf370b715c05 (diff) | |
download | u-boot-imx-51926d5ee0be029fb45f10f42756df97279f8ad3.zip u-boot-imx-51926d5ee0be029fb45f10f42756df97279f8ad3.tar.gz u-boot-imx-51926d5ee0be029fb45f10f42756df97279f8ad3.tar.bz2 |
COMMON: Use __stringify() instead of rest of implementations
Fix up the rest of implementations of __stringify().
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include/configs/tegra20-common.h')
-rw-r--r-- | include/configs/tegra20-common.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/include/configs/tegra20-common.h b/include/configs/tegra20-common.h index 098cdb4..e213375 100644 --- a/include/configs/tegra20-common.h +++ b/include/configs/tegra20-common.h @@ -24,14 +24,7 @@ #ifndef __TEGRA20_COMMON_H #define __TEGRA20_COMMON_H #include <asm/sizes.h> - -/* - * QUOTE(m) will evaluate to a string version of the value of the macro m - * passed in. The extra level of indirection here is to first evaluate the - * macro m before applying the quoting operator. - */ -#define QUOTE_(m) #m -#define QUOTE(m) QUOTE_(m) +#include <linux/stringify.h> /* * High Level Configuration Options @@ -58,7 +51,8 @@ #define TEGRA_LP0_ADDR 0x1C406000 #define TEGRA_LP0_SIZE 0x2000 #define TEGRA_LP0_VEC \ - "lp0_vec=" QUOTE(TEGRA_LP0_SIZE) "@" QUOTE(TEGRA_LP0_ADDR) " " + "lp0_vec=" __stringify(TEGRA_LP0_SIZE) \ + "@" __stringify(TEGRA_LP0_ADDR) " " #else #define TEGRA_LP0_VEC #endif |