aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/module.h')
-rw-r--r--include/linux/module.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index a860a2c1f379..fce15ebd0e1c 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -288,10 +288,10 @@ struct module
288 void *module_core; 288 void *module_core;
289 289
290 /* Here are the sizes of the init and core sections */ 290 /* Here are the sizes of the init and core sections */
291 unsigned long init_size, core_size; 291 unsigned int init_size, core_size;
292 292
293 /* The size of the executable code in each section. */ 293 /* The size of the executable code in each section. */
294 unsigned long init_text_size, core_text_size; 294 unsigned int init_text_size, core_text_size;
295 295
296 /* The handle returned from unwind_add_table. */ 296 /* The handle returned from unwind_add_table. */
297 void *unwind_info; 297 void *unwind_info;
@@ -311,7 +311,7 @@ struct module
311#ifdef CONFIG_KALLSYMS 311#ifdef CONFIG_KALLSYMS
312 /* We keep the symbol and string tables for kallsyms. */ 312 /* We keep the symbol and string tables for kallsyms. */
313 Elf_Sym *symtab; 313 Elf_Sym *symtab;
314 unsigned long num_symtab; 314 unsigned int num_symtab;
315 char *strtab; 315 char *strtab;
316 316
317 /* Section attributes */ 317 /* Section attributes */