diff options
author | Paul Walmsley <paul.walmsley@sifive.com> | 2018-11-14 19:56:01 -0500 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-11-21 09:57:33 -0500 |
commit | 0987abcbeea4c87aef80a6138efc13ed0798fcf2 (patch) | |
tree | 5bc8eb2daeba52748f9bb56f2067152dcef10ec4 /scripts/mod/modpost.c | |
parent | ff64dd4857303dd5550faed9fd598ac90f0f2238 (diff) |
modpost: drop unused command line switches
Drop modpost command line switches that are no longer used by
makefile.modpost, upon request from Sam Ravnborg <sam@ravnborg.org>,
who wrote:
modpost is not supposed to be used outside the kernel build. [...]
I checked if there were any options supported by modpost that
was not configurable in Makefile.modpost.
And I could see that the -M and -K options in getopt() were leftovers.
The code that used these option was dropped in:
commit a8773769d1a1 ("Kbuild: clear marker out of modpost")
Could you add a patch that delete these on top of what you already have.
https://lore.kernel.org/lkml/20181020140835.GA3351@ravnborg.org/
Suggested-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/mod/modpost.c')
-rw-r--r-- | scripts/mod/modpost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index b709b2e623d6..c64066dcd2e4 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -2418,7 +2418,7 @@ int main(int argc, char **argv) | |||
2418 | struct ext_sym_list *extsym_iter; | 2418 | struct ext_sym_list *extsym_iter; |
2419 | struct ext_sym_list *extsym_start = NULL; | 2419 | struct ext_sym_list *extsym_start = NULL; |
2420 | 2420 | ||
2421 | while ((opt = getopt(argc, argv, "i:I:e:mnsST:o:awM:K:E")) != -1) { | 2421 | while ((opt = getopt(argc, argv, "i:I:e:mnsST:o:awE")) != -1) { |
2422 | switch (opt) { | 2422 | switch (opt) { |
2423 | case 'i': | 2423 | case 'i': |
2424 | kernel_read = optarg; | 2424 | kernel_read = optarg; |