diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-11 01:56:48 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-14 23:23:16 +0900 |
commit | 4cb726121e2cce18d4db5e79347f3ade5fd661a2 (patch) | |
tree | f03ab6b5d0b0550179eac2dbe9fbb7b53ad4865e /scripts | |
parent | 580c5b3e1b8bc49dd5452c8a65a72452c534b4b5 (diff) | |
download | linux-4cb726121e2cce18d4db5e79347f3ade5fd661a2.tar.gz linux-4cb726121e2cce18d4db5e79347f3ade5fd661a2.tar.bz2 linux-4cb726121e2cce18d4db5e79347f3ade5fd661a2.zip |
kconfig: remove useless NULL pointer check in conf_write_dep()
conf_write_dep() has just one caller:
conf_write_dep("include/config/auto.conf.cmd");
"name" always points to a valid string.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/confdata.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index d7bd353a8e50..b7bdd9690319 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -964,8 +964,6 @@ static int conf_write_dep(const char *name) struct file *file; FILE *out; - if (!name) - name = ".kconfig.d"; out = fopen("..config.tmp", "w"); if (!out) return 1; |