staging: speakup: main: switch multiple assignment for one assignment per line
One assignment per line is preferred, instead of multiple assignments. To make it more readable. Issue found with checkpatch. Signed-off-by: Lourdes Pedrajas <lu@pplo.net> Reviewed-by: Samuel Thibautl <samuel.thibault@ens-lyon.org> Link: https://lore.kernel.org/r/20200315221247.16629-1-lu@pplo.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
963399b2c2
commit
f23519843b
|
@ -2117,7 +2117,8 @@ speakup_key(struct vc_data *vc, int shift_state, int keycode, u_short keysym,
|
|||
spk_keydown = 0;
|
||||
goto out;
|
||||
}
|
||||
value = spk_lastkey = pad_chars[value];
|
||||
value = pad_chars[value];
|
||||
spk_lastkey = value;
|
||||
spk_keydown++;
|
||||
spk_parked &= 0xfe;
|
||||
goto no_map;
|
||||
|
|
Loading…
Reference in New Issue