From 7e5dc73d4098e122d8e27800fd274c734742ced5 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Fri, 8 Feb 2008 04:18:43 -0800 Subject: [PATCH] --- yaml --- r: 84626 b: refs/heads/master c: 92dfc9dc7ba63134f721b6e745dbdcfc13ea341b h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/linux/module.h | 4 ++-- trunk/kernel/module.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index 44f44a215760..48f01915e7e4 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 6d7623943c905efae327933bc5ee0b2f78e15f56 +refs/heads/master: 92dfc9dc7ba63134f721b6e745dbdcfc13ea341b diff --git a/trunk/include/linux/module.h b/trunk/include/linux/module.h index ac481e2094fd..ac28e8761e84 100644 --- a/trunk/include/linux/module.h +++ b/trunk/include/linux/module.h @@ -449,7 +449,7 @@ static inline void __module_get(struct module *module) /* For kallsyms to ask for address resolution. namebuf should be at * least KSYM_NAME_LEN long: a pointer to namebuf is returned if * found, otherwise NULL. */ -char *module_address_lookup(unsigned long addr, +const char *module_address_lookup(unsigned long addr, unsigned long *symbolsize, unsigned long *offset, char **modname, @@ -519,7 +519,7 @@ static inline void module_put(struct module *module) #define module_name(mod) "kernel" /* For kallsyms to ask for address resolution. NULL means not found. */ -static inline char *module_address_lookup(unsigned long addr, +static inline const char *module_address_lookup(unsigned long addr, unsigned long *symbolsize, unsigned long *offset, char **modname, diff --git a/trunk/kernel/module.c b/trunk/kernel/module.c index 676c023c831b..4202da97a1da 100644 --- a/trunk/kernel/module.c +++ b/trunk/kernel/module.c @@ -2253,7 +2253,7 @@ static const char *get_ksymbol(struct module *mod, /* For kallsyms to ask for address resolution. NULL means not found. Careful * not to lock to avoid deadlock on oopses, simply disable preemption. */ -char *module_address_lookup(unsigned long addr, +const char *module_address_lookup(unsigned long addr, unsigned long *size, unsigned long *offset, char **modname, @@ -2278,7 +2278,7 @@ char *module_address_lookup(unsigned long addr, ret = namebuf; } preempt_enable(); - return (char *)ret; + return ret; } int lookup_module_symbol_name(unsigned long addr, char *symname)