diff options
author | Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> | 2017-12-11 07:50:22 -0500 |
---|---|---|
committer | Petr Mladek <pmladek@suse.com> | 2018-01-05 09:23:59 -0500 |
commit | 9e6d35ff0a8fa9c442cbde9afe88babf5e8a2f1a (patch) | |
tree | dbafdb1fd240b703f4507c48a4259ae3e04c596a | |
parent | a52668c6748700756545e43d0cd06ec83d7667e0 (diff) |
sysfs: do not use print_symbol()
print_symbol() is a very old API that has been obsoleted by %pS format
specifier in a normal printk() call.
Replace print_symbol() with a direct printk("%pS") call.
Link: http://lkml.kernel.org/r/20171211125025.2270-11-sergey.senozhatsky@gmail.com
To: Andrew Morton <akpm@linux-foundation.org>
To: Russell King <linux@armlinux.org.uk>
To: Catalin Marinas <catalin.marinas@arm.com>
To: Mark Salter <msalter@redhat.com>
To: Tony Luck <tony.luck@intel.com>
To: David Howells <dhowells@redhat.com>
To: Yoshinori Sato <ysato@users.sourceforge.jp>
To: Guan Xuetao <gxt@mprc.pku.edu.cn>
To: Borislav Petkov <bp@alien8.de>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Thomas Gleixner <tglx@linutronix.de>
To: Peter Zijlstra <peterz@infradead.org>
To: Vineet Gupta <vgupta@synopsys.com>
To: Fengguang Wu <fengguang.wu@intel.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Petr Mladek <pmladek@suse.com>
Cc: LKML <linux-kernel@vger.kernel.org>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-c6x-dev@linux-c6x.org
Cc: linux-ia64@vger.kernel.org
Cc: linux-am33-list@redhat.com
Cc: linux-sh@vger.kernel.org
Cc: linux-edac@vger.kernel.org
Cc: x86@kernel.org
Cc: linux-snps-arc@lists.infradead.org
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
[pmladek@suse.com: updated commit message]
Signed-off-by: Petr Mladek <pmladek@suse.com>
-rw-r--r-- | fs/sysfs/file.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c index 39c75a86c67f..bfcbe486d385 100644 --- a/fs/sysfs/file.c +++ b/fs/sysfs/file.c | |||
@@ -12,7 +12,6 @@ | |||
12 | 12 | ||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/kobject.h> | 14 | #include <linux/kobject.h> |
15 | #include <linux/kallsyms.h> | ||
16 | #include <linux/slab.h> | 15 | #include <linux/slab.h> |
17 | #include <linux/list.h> | 16 | #include <linux/list.h> |
18 | #include <linux/mutex.h> | 17 | #include <linux/mutex.h> |
@@ -70,8 +69,8 @@ static int sysfs_kf_seq_show(struct seq_file *sf, void *v) | |||
70 | * indicate truncated result or overflow in normal use cases. | 69 | * indicate truncated result or overflow in normal use cases. |
71 | */ | 70 | */ |
72 | if (count >= (ssize_t)PAGE_SIZE) { | 71 | if (count >= (ssize_t)PAGE_SIZE) { |
73 | print_symbol("fill_read_buffer: %s returned bad count\n", | 72 | printk("fill_read_buffer: %pS returned bad count\n", |
74 | (unsigned long)ops->show); | 73 | ops->show); |
75 | /* Try to struggle along */ | 74 | /* Try to struggle along */ |
76 | count = PAGE_SIZE - 1; | 75 | count = PAGE_SIZE - 1; |
77 | } | 76 | } |