staging: speakup: fix line over 80 characters.
authorJules Irenge <jbi.octave@gmail.com>
Sun, 17 Mar 2019 12:31:10 +0000 (12:31 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Mar 2019 06:47:53 +0000 (07:47 +0100)
Fix coding style issues which solves checkpatch.pl warning:
    "WARNING: line over 80 characters".

Signed-off-by: Jules Irenge <jbi.octave@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/speakup/kobjects.c

index 11c704b..f653c16 100644 (file)
@@ -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'))