staging: speakup: Moved OR operator to previous line.
Moved logical OR operator to previous line to fix the following checkpatch issue: CHECK: Logical continuations should be on the previous line. Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0dcb212413
commit
23996ee52e
|
@ -2174,10 +2174,10 @@ no_map:
|
|||
if (up_flag || spk_killed || type == KT_SHIFT)
|
||||
goto out;
|
||||
spk_shut_up &= 0xfe;
|
||||
kh = (value == KVAL(K_DOWN))
|
||||
|| (value == KVAL(K_UP))
|
||||
|| (value == KVAL(K_LEFT))
|
||||
|| (value == KVAL(K_RIGHT));
|
||||
kh = (value == KVAL(K_DOWN)) ||
|
||||
(value == KVAL(K_UP)) ||
|
||||
(value == KVAL(K_LEFT)) ||
|
||||
(value == KVAL(K_RIGHT));
|
||||
if ((cursor_track != read_all_mode) || !kh)
|
||||
if (!spk_no_intr)
|
||||
spk_do_flush();
|
||||
|
|
Loading…
Reference in New Issue