diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-07-20 10:46:26 +0300 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-07-25 17:25:28 +0300 |
commit | a2ff4040151ace5be20e4de34220468b9e842e4d (patch) | |
tree | 16b254a3361baa567921950e51810018a91b0ac5 /scripts/kconfig/lkc.h | |
parent | 08b220b37ffe9ae8f2f0fe4618d03f7c25805fb3 (diff) | |
download | linux-a2ff4040151ace5be20e4de34220468b9e842e4d.tar.xz |
kconfig: rename file_write_dep and move it to confdata.c
file_write_dep() is called only from conf_write_autoconf().
Move it from util.c to confdata.c to make it static.
Also, rename it to conf_write_dep() since it should belong to
the group of conf_write* functions.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/lkc.h')
-rw-r--r-- | scripts/kconfig/lkc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index ed3ff88e60ba..6b7bbc6238e3 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h @@ -97,7 +97,6 @@ void menu_set_type(int type); /* util.c */ struct file *file_lookup(const char *name); -int file_write_dep(const char *name); void *xmalloc(size_t size); void *xcalloc(size_t nmemb, size_t size); void *xrealloc(void *p, size_t size); |