From: Masahiro Yamada Date: Fri, 30 Nov 2018 09:15:49 +0000 (+0900) Subject: kconfig: rename conf_split_config() to conf_touch_deps() X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=5507c2910ab536990c3d966a70c761121699f347;hp=f239f43b91dfa5fbec1a8d19b41db0b792d4c751 kconfig: rename conf_split_config() to conf_touch_deps() According to commit 2e3646e51b2d ("kconfig: integrate split config into silentoldconfig"), this function was named after split-include tool, which used to exist in old versions of Linux. Setting aside the historical reason, rename it into a more intuitive name. This function touches timestamp files under include/config/ in order to interact with the fixdep tool. Signed-off-by: Masahiro Yamada Signed-off-by: Christian Lamparter --- diff --git a/config/confdata.c b/config/confdata.c index b717150..7ba857c 100644 --- a/config/confdata.c +++ b/config/confdata.c @@ -952,7 +952,7 @@ static int conf_write_dep(const char *name) return 0; } -static int conf_split_config(void) +static int conf_touch_deps(void) { const char *name; char path[PATH_MAX+1]; @@ -1070,7 +1070,7 @@ int conf_write_autoconf(void) conf_write_dep("include/generated/auto.conf.cmd"); - if (conf_split_config()) + if (conf_touch_deps()) return 1; out = fopen(".tmpconfig", "w");