From 83053c3eabd7f1cb8bd2220e394d33b742704181 Mon Sep 17 00:00:00 2001 From: Jules Irenge Date: Sun, 17 Mar 2019 12:31:10 +0000 Subject: [PATCH] staging: speakup: fix line over 80 characters. Fix coding style issues which solves checkpatch.pl warning: "WARNING: line over 80 characters". Signed-off-by: Jules Irenge Signed-off-by: Greg Kroah-Hartman --- drivers/staging/speakup/kobjects.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/staging/speakup/kobjects.c b/drivers/staging/speakup/kobjects.c index 11c704b..f653c16eb 100644 --- a/drivers/staging/speakup/kobjects.c +++ b/drivers/staging/speakup/kobjects.c @@ -154,7 +154,10 @@ static ssize_t chars_chartab_store(struct kobject *kobj, continue; } - /* Do not replace with kstrtoul: here we need temp to be updated */ + /* + * Do not replace with kstrtoul: + * here we need temp to be updated + */ index = simple_strtoul(cp, &temp, 10); if (index > 255) { rejected++; @@ -788,7 +791,10 @@ static ssize_t message_store_helper(const char *buf, size_t count, continue; } - /* Do not replace with kstrtoul: here we need temp to be updated */ + /* + * Do not replace with kstrtoul: + * here we need temp to be updated + */ index = simple_strtoul(cp, &temp, 10); while ((temp < linefeed) && (*temp == ' ' || *temp == '\t')) -- 2.7.4