projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee4c6f0
)
kconfig: remove assignment for Kconfig file
author
Masahiro Yamada
<masahiroy@kernel.org>
Sat, 13 Mar 2021 19:48:28 +0000
(
04:48
+0900)
committer
Masahiro Yamada
<masahiroy@kernel.org>
Thu, 25 Mar 2021 04:35:20 +0000
(13:35 +0900)
Pass av[optind] to conf_parse() directly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/conf.c
patch
|
blob
|
history
diff --git
a/scripts/kconfig/conf.c
b/scripts/kconfig/conf.c
index 9ebc1acaf1aeea1bb917aa9313705f2b6e7e2592..42d35da8660403196055adac0a9a214afbebb865 100644
(file)
--- 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) {