diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2011-10-13 13:03:47 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-22 01:21:15 +0200 |
commit | 8b3637c662e8a322f542942e5ee76b95ed9d9e39 (patch) | |
tree | 4cf79290fd343ec2fd8a407f7cce3293f14cb4ea /tools | |
parent | 4c34b2a090b8418fd6b2e91b5e9dd8d36206384f (diff) |
common: cosmetic: CONFIG_ROOTPATH checkpatch compliance
Remove MK_STR from places that consume CONFIG_ROOTPATH to force all definitions to be string literals.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
Cc: Wolfgang Denk <wd@denx.de>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/env/fw_env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index cd0cc31ad79..f66bd3dbf5b 100644 --- a/tools/env/fw_env.c +++ b/tools/env/fw_env.c @@ -175,7 +175,7 @@ static char default_environment[] = { "autoload=" CONFIG_SYS_AUTOLOAD "\0" #endif #ifdef CONFIG_ROOTPATH - "rootpath=" MK_STR (CONFIG_ROOTPATH) "\0" + "rootpath=" CONFIG_ROOTPATH "\0" #endif #ifdef CONFIG_GATEWAYIP "gatewayip=" MK_STR (CONFIG_GATEWAYIP) "\0" |