diff options
| author | 2021-03-14 04:48:28 +0900 | |
|---|---|---|
| committer | 2021-03-25 13:35:20 +0900 | |
| commit | 9a3c3bc820be102f8bb1ca0e9700633d5b3aeb1f (patch) | |
| tree | 647bacd720ad1d9968be6e70b7aac708e0a60bd5 /scripts/kconfig | |
| parent | kconfig: add help messages for --help (-h) and --silent (-s) (diff) | |
| download | linux-dev-9a3c3bc820be102f8bb1ca0e9700633d5b3aeb1f.tar.xz linux-dev-9a3c3bc820be102f8bb1ca0e9700633d5b3aeb1f.zip | |
kconfig: remove assignment for Kconfig file
Pass av[optind] to conf_parse() directly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig')
| -rw-r--r-- | scripts/kconfig/conf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 9ebc1acaf1ae..42d35da86604 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -571,8 +571,7 @@ int main(int ac, char **av) conf_usage(progname); exit(1); } - name = av[optind]; - conf_parse(name); + conf_parse(av[optind]); //zconfdump(stdout); switch (input_mode) { |
