summaryrefslogtreecommitdiff
path: root/common/kallsyms.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/kallsyms.c')
-rw-r--r--common/kallsyms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/kallsyms.c b/common/kallsyms.c
index ce42a932bb..13344e634b 100644
--- a/common/kallsyms.c
+++ b/common/kallsyms.c
@@ -31,7 +31,7 @@ const char *symbol_lookup(unsigned long addr, unsigned long *caddr)
*caddr = 0;
while (*sym) {
- sym_addr = simple_strtoul(sym, &esym, 16);
+ sym_addr = hextoul(sym, &esym);
sym = esym;
if (sym_addr > addr)
break;