accessibility: braille: braille_console: fix whitespace style issues
Fixed a coding style issue. Reviewed-by: Jiri Slaby <jirislaby@kernel.org> Signed-off-by: Clayton Casciato <majortomtosourcecontrol@gmail.com> Link: https://lore.kernel.org/r/20210613203031.23721-1-majortomtosourcecontrol@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5b5140bf51
commit
36b1fefe36
|
@ -225,6 +225,7 @@ static int keyboard_notifier_call(struct notifier_block *blk,
|
|||
case KBD_POST_KEYSYM:
|
||||
{
|
||||
unsigned char type = KTYP(param->value) - 0xf0;
|
||||
|
||||
if (type == KT_SPEC) {
|
||||
unsigned char val = KVAL(param->value);
|
||||
int on_off = -1;
|
||||
|
@ -264,6 +265,7 @@ static int vt_notifier_call(struct notifier_block *blk,
|
|||
{
|
||||
struct vt_notifier_param *param = _param;
|
||||
struct vc_data *vc = param->vc;
|
||||
|
||||
switch (code) {
|
||||
case VT_ALLOCATE:
|
||||
break;
|
||||
|
@ -272,6 +274,7 @@ static int vt_notifier_call(struct notifier_block *blk,
|
|||
case VT_WRITE:
|
||||
{
|
||||
unsigned char c = param->c;
|
||||
|
||||
if (vc->vc_num != fg_console)
|
||||
break;
|
||||
switch (c) {
|
||||
|
|
Loading…
Reference in New Issue