aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/preprocess.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-05-27 23:37:23 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-06-09 15:08:18 +0900
commit5533397d1ec83d749067794f54283890e38ff0c1 (patch)
tree99adb6227ff163c4c61414bc2fe8b80d39e1046e /scripts/kconfig/preprocess.c
parentkconfig: require the argument of --defconfig (diff)
downloadlinux-dev-5533397d1ec83d749067794f54283890e38ff0c1.tar.xz
linux-dev-5533397d1ec83d749067794f54283890e38ff0c1.zip
kconfig: add static qualifier to expand_string()
Now expand_string() is only used in preprocess.c Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to '')
-rw-r--r--scripts/kconfig/preprocess.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kconfig/preprocess.c b/scripts/kconfig/preprocess.c
index 592dfbfa9fb3..0243086fb168 100644
--- a/scripts/kconfig/preprocess.c
+++ b/scripts/kconfig/preprocess.c
@@ -15,6 +15,7 @@
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
static char *expand_string_with_args(const char *in, int argc, char *argv[]);
+static char *expand_string(const char *in);
static void __attribute__((noreturn)) pperror(const char *format, ...)
{
@@ -550,7 +551,7 @@ static char *expand_string_with_args(const char *in, int argc, char *argv[])
return __expand_string(&in, is_end_of_str, argc, argv);
}
-char *expand_string(const char *in)
+static char *expand_string(const char *in)
{
return expand_string_with_args(in, 0, NULL);
}