Message ID | 20220508190631.2386038-2-masahiroy@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | kbuild: yet another series of cleanups (modpost, LTO, MODULE_REL_CRCS, export.h) | expand |
On Sun, May 8, 2022 at 12:09 PM Masahiro Yamada <masahiroy@kernel.org> wrote: > > This is a remnant of commit 6543becf26ff ("mod/file2alias: make > modalias generation safe for cross compiling"). > > Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Thanks for the patch! (I wonder if we should put our old mailing list in .mailmap?) Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> > --- > > Changes in v4: > - New patch > > scripts/mod/modpost.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h > index cfa127d2bb8f..d9daeff07b83 100644 > --- a/scripts/mod/modpost.h > +++ b/scripts/mod/modpost.h > @@ -174,7 +174,6 @@ static inline unsigned int get_secindex(const struct elf_info *info, > } > > /* file2alias.c */ > -extern unsigned int cross_build; > void handle_moddevtable(struct module *mod, struct elf_info *info, > Elf_Sym *sym, const char *symname); > void add_moddevtable(struct buffer *buf, struct module *mod); > --
On Mon, May 9, 2022 at 4:09 AM Masahiro Yamada <masahiroy@kernel.org> wrote: > > This is a remnant of commit 6543becf26ff ("mod/file2alias: make > modalias generation safe for cross compiling"). > > Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> > --- Applied to linux-kbuild. > > Changes in v4: > - New patch > > scripts/mod/modpost.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h > index cfa127d2bb8f..d9daeff07b83 100644 > --- a/scripts/mod/modpost.h > +++ b/scripts/mod/modpost.h > @@ -174,7 +174,6 @@ static inline unsigned int get_secindex(const struct elf_info *info, > } > > /* file2alias.c */ > -extern unsigned int cross_build; > void handle_moddevtable(struct module *mod, struct elf_info *info, > Elf_Sym *sym, const char *symname); > void add_moddevtable(struct buffer *buf, struct module *mod); > -- > 2.32.0 > > -- > You received this message because you are subscribed to the Google Groups "Clang Built Linux" group. > To unsubscribe from this group and stop receiving emails from it, send an email to clang-built-linux+unsubscribe@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/clang-built-linux/20220508190631.2386038-2-masahiroy%40kernel.org.
diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h index cfa127d2bb8f..d9daeff07b83 100644 --- a/scripts/mod/modpost.h +++ b/scripts/mod/modpost.h @@ -174,7 +174,6 @@ static inline unsigned int get_secindex(const struct elf_info *info, } /* file2alias.c */ -extern unsigned int cross_build; void handle_moddevtable(struct module *mod, struct elf_info *info, Elf_Sym *sym, const char *symname); void add_moddevtable(struct buffer *buf, struct module *mod);
This is a remnant of commit 6543becf26ff ("mod/file2alias: make modalias generation safe for cross compiling"). Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> --- Changes in v4: - New patch scripts/mod/modpost.h | 1 - 1 file changed, 1 deletion(-)