Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3f1712ba authored by Vegard Nossum's avatar Vegard Nossum Committed by Linus Torvalds
Browse files

print_ip_sym(): use %pS

parent c389d27b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -108,8 +108,7 @@ static inline void print_fn_descriptor_symbol(const char *fmt, void *addr)

static inline void print_ip_sym(unsigned long ip)
{
	printk("[<%p>]", (void *) ip);
	print_symbol(" %s\n", ip);
	printk("[<%p>] %pS\n", (void *) ip, (void *) ip);
}

#endif /*_LINUX_KALLSYMS_H*/