aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup/keyhelp.c
diff options
context:
space:
mode:
authorSreya Mittal <sreyamittal5@gmail.com>2017-03-01 02:38:12 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-06 09:39:54 +0100
commit4cb3150a8c2d1f74c67f22ecd71070a0dafcb64f (patch)
tree91e4deb84829da82caa86be55d42cd27eefe3d5c /drivers/staging/speakup/keyhelp.c
parentstaging: dgnc: replace udelay with usleep_range (diff)
downloadlinux-dev-4cb3150a8c2d1f74c67f22ecd71070a0dafcb64f.tar.xz
linux-dev-4cb3150a8c2d1f74c67f22ecd71070a0dafcb64f.zip
staging: speakup: Align with parentheses
Align next line of print statements to the right of open parentheses. Signed-off-by: Sreya Mittal <sreyamittal5@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup/keyhelp.c')
-rw-r--r--drivers/staging/speakup/keyhelp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/speakup/keyhelp.c b/drivers/staging/speakup/keyhelp.c
index ce94cb13e256..f5156bba4d55 100644
--- a/drivers/staging/speakup/keyhelp.c
+++ b/drivers/staging/speakup/keyhelp.c
@@ -117,7 +117,7 @@ static void say_key(int key)
}
if ((key > 0) && (key <= num_key_names))
synth_printf(" %s\n",
- spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
+ spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
}
static int help_init(void)
@@ -182,7 +182,7 @@ int spk_handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key)
name = NULL;
if ((type != KT_SPKUP) && (key > 0) && (key <= num_key_names)) {
synth_printf("%s\n",
- spk_msg_get(MSG_KEYNAMES_START + key - 1));
+ spk_msg_get(MSG_KEYNAMES_START + key - 1));
return 1;
}
for (i = 0; funcvals[i] != 0 && !name; i++) {