From: Jules Irenge Date: Sun, 17 Mar 2019 12:31:10 +0000 (+0000) Subject: staging: speakup: fix line over 80 characters. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=83053c3eabd7f1cb8bd2220e394d33b742704181;p=linux.git 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 --- diff --git a/drivers/staging/speakup/kobjects.c b/drivers/staging/speakup/kobjects.c index 11c704b27c3c0..f653c16eb4e52 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'))