Commit d08c028c authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

staging: rtl8192x: Remove use of seq_printf return value

The seq_printf return value, because it's frequently misused,
will eventually be converted to void.

See: commit 1f33c41c ("seq_file: Rename seq_overflow() to
     seq_has_overflowed() and make public")
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5877ecc3
......@@ -207,7 +207,9 @@ static struct proc_dir_entry *rtllib_proc;
static int show_debug_level(struct seq_file *m, void *v)
{
return seq_printf(m, "0x%08X\n", rtllib_debug_level);
seq_printf(m, "0x%08X\n", rtllib_debug_level);
return 0;
}
static ssize_t write_debug_level(struct file *file, const char __user *buffer,
......
......@@ -245,7 +245,9 @@ static struct proc_dir_entry *ieee80211_proc;
static int show_debug_level(struct seq_file *m, void *v)
{
return seq_printf(m, "0x%08X\n", ieee80211_debug_level);
seq_printf(m, "0x%08X\n", ieee80211_debug_level);
return 0;
}
static ssize_t write_debug_level(struct file *file, const char __user *buffer,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment