diff options
author | Amerigo Wang <amwang@redhat.com> | 2009-12-14 21:00:22 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-15 11:53:26 -0500 |
commit | 948c1e2521979c332b21b623414cf258150f214e (patch) | |
tree | d59049241d1396c6e7cac170b80c354fd5835f23 /include/linux/kallsyms.h | |
parent | 29671f22a8b6522db3b126a3fdfb208759ce46e3 (diff) |
kallsyms: remove deprecated print_fn_descriptor_symbol()
According to feature-removal-schedule.txt, it is the time to remove
print_fn_descriptor_symbol().
And a quick grep shows that it no longer has any callers.
Signed-off-by: WANG Cong <amwang@redhat.com>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/kallsyms.h')
-rw-r--r-- | include/linux/kallsyms.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/kallsyms.h b/include/linux/kallsyms.h index 792274269f2..d8e9b3d1c23 100644 --- a/include/linux/kallsyms.h +++ b/include/linux/kallsyms.h | |||
@@ -107,18 +107,6 @@ static inline void print_symbol(const char *fmt, unsigned long addr) | |||
107 | __builtin_extract_return_addr((void *)addr)); | 107 | __builtin_extract_return_addr((void *)addr)); |
108 | } | 108 | } |
109 | 109 | ||
110 | /* | ||
111 | * Pretty-print a function pointer. This function is deprecated. | ||
112 | * Please use the "%pF" vsprintf format instead. | ||
113 | */ | ||
114 | static inline void __deprecated print_fn_descriptor_symbol(const char *fmt, void *addr) | ||
115 | { | ||
116 | #if defined(CONFIG_IA64) || defined(CONFIG_PPC64) | ||
117 | addr = *(void **)addr; | ||
118 | #endif | ||
119 | print_symbol(fmt, (unsigned long)addr); | ||
120 | } | ||
121 | |||
122 | static inline void print_ip_sym(unsigned long ip) | 110 | static inline void print_ip_sym(unsigned long ip) |
123 | { | 111 | { |
124 | printk("[<%p>] %pS\n", (void *) ip, (void *) ip); | 112 | printk("[<%p>] %pS\n", (void *) ip, (void *) ip); |