diff options
Diffstat (limited to 'scripts/mod/modpost.h')
-rw-r--r-- | scripts/mod/modpost.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h index 861d866fcd83..2b00c6062844 100644 --- a/scripts/mod/modpost.h +++ b/scripts/mod/modpost.h | |||
@@ -100,6 +100,7 @@ buf_write(struct buffer *buf, const char *s, int len); | |||
100 | struct module { | 100 | struct module { |
101 | struct module *next; | 101 | struct module *next; |
102 | const char *name; | 102 | const char *name; |
103 | int gpl_compatible; | ||
103 | struct symbol *unres; | 104 | struct symbol *unres; |
104 | int seen; | 105 | int seen; |
105 | int skip; | 106 | int skip; |
@@ -115,6 +116,9 @@ struct elf_info { | |||
115 | Elf_Shdr *sechdrs; | 116 | Elf_Shdr *sechdrs; |
116 | Elf_Sym *symtab_start; | 117 | Elf_Sym *symtab_start; |
117 | Elf_Sym *symtab_stop; | 118 | Elf_Sym *symtab_stop; |
119 | Elf_Section export_sec; | ||
120 | Elf_Section export_gpl_sec; | ||
121 | Elf_Section export_gpl_future_sec; | ||
118 | const char *strtab; | 122 | const char *strtab; |
119 | char *modinfo; | 123 | char *modinfo; |
120 | unsigned int modinfo_len; | 124 | unsigned int modinfo_len; |