]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
COMMON: Use __stringify() instead of rest of implementations
authorMarek Vasut <marex@denx.de>
Sun, 23 Sep 2012 15:41:25 +0000 (17:41 +0200)
committerTom Rini <trini@ti.com>
Mon, 15 Oct 2012 18:53:47 +0000 (11:53 -0700)
Fix up the rest of implementations of __stringify().

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
board/logicpd/zoom2/zoom2_serial.h
include/configs/astro_mcf5373l.h
include/configs/tegra20-common.h
include/nios2.h

index 4e30587066ca754a35bf7919071ba522820028be..ad63a074f06503b5e9dde097475eea0212e34a11 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef ZOOM2_SERIAL_H
 #define ZOOM2_SERIAL_H
 
+#include <linux/stringify.h>
+
 extern int zoom2_debug_board_connected (void);
 
 #define SERIAL_TL16CP754C_BASE 0x10000000      /* Zoom2 Serial chip address */
@@ -31,9 +33,6 @@ extern int zoom2_debug_board_connected (void);
 #define QUAD_BASE_2    (SERIAL_TL16CP754C_BASE + 0x200)
 #define QUAD_BASE_3    (SERIAL_TL16CP754C_BASE + 0x300)
 
-#define S(a) #a
-#define N(a) S(quad##a)
-
 #define QUAD_INIT(n)                           \
 int quad_init_##n(void)                                \
 {                                              \
@@ -61,7 +60,7 @@ int quad_tstc_##n(void)                               \
 }                                              \
 struct serial_device zoom2_serial_device##n =  \
 {                                              \
-       N(n),                                   \
+       __stringify(n),                         \
        quad_init_##n,                          \
        NULL,                                   \
        quad_setbrg_##n,                        \
index 5c4cac937df99fb66660ff0b71f07483d031f7db..a0ed8f18f5a9c30c9c77bc28512a60fd445e4623 100644 (file)
@@ -33,6 +33,8 @@
 #ifndef _CONFIG_ASTRO_MCF5373L_H
 #define _CONFIG_ASTRO_MCF5373L_H
 
+#include <linux/stringify.h>
+
 /*
  * set the card type to actually compile for; either of
  * the possibilities listed below has to be used!
  * u-boot: 'set' command
  */
 
-#define _QUOTEME(x)    #x
-#define QUOTEME(x)     _QUOTEME(x)
-
 #define CONFIG_EXTRA_ENV_SETTINGS                      \
        "loaderversion=11\0"                            \
-       "card_id="QUOTEME(ASTRO_ID)"\0"                 \
+       "card_id="__stringify(ASTRO_ID)"\0"                     \
        "alterafile=0\0"                                \
        "xilinxfile=0\0"                                \
        "xilinxload=imxtract 0x540000 $xilinxfile 0x41000000&&"\
index 098cdb4460d76e8a04ad0af478d0705b4be1c170..e213375dc5b8bd6052cba05afbec851727126e59 100644 (file)
 #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
index 54954e3f5ae735432851602e7b42a89dff0db4c5..df8126a66e4753f84f4299e8a15f78e173c7b57b 100644 (file)
@@ -24,6 +24,8 @@
 #ifndef __NIOS2_H__
 #define __NIOS2_H__
 
+#include <linux/stringify.h>
+
 /*------------------------------------------------------------------------
  * Control registers -- use with wrctl() & rdctl()
  *----------------------------------------------------------------------*/
 /*------------------------------------------------------------------------
  * Access to control regs
  *----------------------------------------------------------------------*/
-#define _str_(x) #x
 
 #define rdctl(reg)\
        ({unsigned int val;\
-       asm volatile( "rdctl %0, ctl" _str_(reg)\
+       asm volatile("rdctl %0, ctl" __stringify(reg) \
                : "=r" (val) ); val;})
 
 #define wrctl(reg,val)\