diff options
| author | Marek Vasut <marex@denx.de> | 2012-09-23 17:41:24 +0200 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2012-10-15 11:53:47 -0700 | 
| commit | 5368c55d4ca463405225dd184ecabf370b715c05 (patch) | |
| tree | e1ba15d3d2ca7a971dcdea2569c7335c97a72067 /common/cmd_nvedit.c | |
| parent | 93ea89f0d979a000e4c47dd8a8991328b2ac8cf7 (diff) | |
| download | olio-uboot-2014.01-5368c55d4ca463405225dd184ecabf370b715c05.tar.xz olio-uboot-2014.01-5368c55d4ca463405225dd184ecabf370b715c05.zip | |
COMMON: Use __stringify() instead of MK_STR()
Kill multiple occurances and redeclaration of MK_STR
in favor of __stringify().
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/cmd_nvedit.c')
| -rw-r--r-- | common/cmd_nvedit.c | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index bb1d4ec3e..772cffa8a 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -71,9 +71,6 @@ DECLARE_GLOBAL_DATA_PTR;  SPI_FLASH|NVRAM|MMC|FAT|REMOTE} or CONFIG_ENV_IS_NOWHERE  #endif -#define XMK_STR(x)	#x -#define MK_STR(x)	XMK_STR(x) -  /*   * Maximum expected input data size for import command   */ @@ -259,7 +256,7 @@ int env_check_apply(const char *name, const char *oldval,  		if (strcmp(name, "serial#") == 0 ||  		    (strcmp(name, "ethaddr") == 0  #if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR) -		     && strcmp(oldval, MK_STR(CONFIG_ETHADDR)) != 0 +		     && strcmp(oldval, __stringify(CONFIG_ETHADDR)) != 0  #endif	/* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */  			)) {  			printf("Can't overwrite \"%s\"\n", name); |