diff options
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c index 7c77a0a9275c..7f60e782de1e 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -2040,7 +2040,8 @@ const char *module_address_lookup(unsigned long addr, | |||
2040 | list_for_each_entry(mod, &modules, list) { | 2040 | list_for_each_entry(mod, &modules, list) { |
2041 | if (within(addr, mod->module_init, mod->init_size) | 2041 | if (within(addr, mod->module_init, mod->init_size) |
2042 | || within(addr, mod->module_core, mod->core_size)) { | 2042 | || within(addr, mod->module_core, mod->core_size)) { |
2043 | *modname = mod->name; | 2043 | if (modname) |
2044 | *modname = mod->name; | ||
2044 | return get_ksymbol(mod, addr, size, offset); | 2045 | return get_ksymbol(mod, addr, size, offset); |
2045 | } | 2046 | } |
2046 | } | 2047 | } |