Increase readability of code following the Kernel coding style by breaking long 
lines and thus eliminating the checkpatch.pl warning.

Signed-off-by: Andrew Jye Shih Chuang <andrewjschu...@gmail.com>
---
 drivers/staging/speakup/main.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/speakup/main.c b/drivers/staging/speakup/main.c
index af30b70..2ba9989 100644
--- a/drivers/staging/speakup/main.c
+++ b/drivers/staging/speakup/main.c
@@ -899,12 +899,13 @@ static int get_sentence_buf(struct vc_data *vc, int 
read_punc)
        while (start < end) {
                sentbuf[bn][i] = get_char(vc, (u_short *)start, &tmp);
                if (i > 0) {
-                       if (sentbuf[bn][i] == SPACE && sentbuf[bn][i - 1] == 
'.' &&
+                       if (sentbuf[bn][i] == SPACE &&
+                           sentbuf[bn][i - 1] == '.' &&
                            numsentences[bn] < 9) {
                                /* Sentence Marker */
                                numsentences[bn]++;
                                sentmarks[bn][numsentences[bn]] =
-                                   &sentbuf[bn][i];
+                                       &sentbuf[bn][i];
                        }
                }
                i++;
@@ -1233,7 +1234,8 @@ int spk_set_key_info(const u_char *key_info, u_char 
*k_buffer)
        key_data_len = (states + 1) * (num_keys + 1);
        if (key_data_len + SHIFT_TBL_SIZE + 4 >= sizeof(spk_key_buf)) {
                pr_debug("too many key_infos (%d over %u)\n",
-                        key_data_len + SHIFT_TBL_SIZE + 4, (unsigned 
int)(sizeof(spk_key_buf)));
+                        key_data_len + SHIFT_TBL_SIZE + 4,
+                        (unsigned int)(sizeof(spk_key_buf)));
                return -EINVAL;
        }
        memset(k_buffer, 0, SHIFT_TBL_SIZE);
@@ -1247,8 +1249,8 @@ int spk_set_key_info(const u_char *key_info, u_char 
*k_buffer)
        for (i = 1; i <= states; i++) {
                ch = *cp1++;
                if (ch >= SHIFT_TBL_SIZE) {
-                       pr_debug("(%d) not valid shift state (max_allowed = 
%d)\n", ch,
-                                SHIFT_TBL_SIZE);
+                       pr_debug("(%d) not valid shift state (max_allowed = 
%d)\n",
+                                ch, SHIFT_TBL_SIZE);
                        return -EINVAL;
                }
                spk_shift_table[ch] = i;
@@ -1256,7 +1258,8 @@ int spk_set_key_info(const u_char *key_info, u_char 
*k_buffer)
        keymap_flags = *cp1++;
        while ((ch = *cp1)) {
                if (ch >= MAX_KEY) {
-                       pr_debug("(%d), not valid key, (max_allowed = %d)\n", 
ch, MAX_KEY);
+                       pr_debug("(%d), not valid key, (max_allowed = %d)\n",
+                                ch, MAX_KEY);
                        return -EINVAL;
                }
                spk_our_keys[ch] = cp1;
-- 
2.7.4

Reply via email to