Commit accb9343 authored by Santha Meena Ramamoorthy's avatar Santha Meena Ramamoorthy Committed by Greg Kroah-Hartman

staging: speakup: match alignment with open parenthesis

Match alignment with the open parenthesis to conform to the Linux kernel
coding style. Issue found using checkpatch.
Signed-off-by: default avatarSantha Meena Ramamoorthy <santhameena13@gmail.com>
Acked-by: default avatarSamuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d8c85d23
...@@ -417,7 +417,7 @@ static void announce_edge(struct vc_data *vc, int msg_id) ...@@ -417,7 +417,7 @@ static void announce_edge(struct vc_data *vc, int msg_id)
bleep(spk_y); bleep(spk_y);
if ((spk_bleeps & 2) && (msg_id < edge_quiet)) if ((spk_bleeps & 2) && (msg_id < edge_quiet))
synth_printf("%s\n", synth_printf("%s\n",
spk_msg_get(MSG_EDGE_MSGS_START + msg_id - 1)); spk_msg_get(MSG_EDGE_MSGS_START + msg_id - 1));
} }
static void speak_char(u16 ch) static void speak_char(u16 ch)
......
...@@ -349,7 +349,7 @@ static int testkernel(void) ...@@ -349,7 +349,7 @@ static int testkernel(void)
return 0; return 0;
else if (dt_stat == 0x0dec) else if (dt_stat == 0x0dec)
pr_warn("dec_pc at 0x%x, software not loaded\n", pr_warn("dec_pc at 0x%x, software not loaded\n",
speakup_info.port_tts); speakup_info.port_tts);
status = -3; status = -3;
oops: synth_release_region(speakup_info.port_tts, SYNTH_IO_EXTENT); oops: synth_release_region(speakup_info.port_tts, SYNTH_IO_EXTENT);
speakup_info.port_tts = 0; speakup_info.port_tts = 0;
...@@ -412,11 +412,11 @@ static void do_catch_up(struct spk_synth *synth) ...@@ -412,11 +412,11 @@ static void do_catch_up(struct spk_synth *synth)
if (!in_escape) if (!in_escape)
dt_sendchar(PROCSPEECH); dt_sendchar(PROCSPEECH);
spin_lock_irqsave(&speakup_info.spinlock, spin_lock_irqsave(&speakup_info.spinlock,
flags); flags);
jiffy_delta_val = jiffy_delta->u.n.value; jiffy_delta_val = jiffy_delta->u.n.value;
delay_time_val = delay_time->u.n.value; delay_time_val = delay_time->u.n.value;
spin_unlock_irqrestore(&speakup_info.spinlock, spin_unlock_irqrestore(&speakup_info.spinlock,
flags); flags);
schedule_timeout(msecs_to_jiffies schedule_timeout(msecs_to_jiffies
(delay_time_val)); (delay_time_val));
jiff_max = jiffies + jiffy_delta_val; jiff_max = jiffies + jiffy_delta_val;
......
...@@ -262,11 +262,11 @@ static void do_catch_up(struct spk_synth *synth) ...@@ -262,11 +262,11 @@ static void do_catch_up(struct spk_synth *synth)
if (!in_escape) if (!in_escape)
synth->io_ops->synth_out(synth, PROCSPEECH); synth->io_ops->synth_out(synth, PROCSPEECH);
spin_lock_irqsave(&speakup_info.spinlock, spin_lock_irqsave(&speakup_info.spinlock,
flags); flags);
jiffy_delta_val = jiffy_delta->u.n.value; jiffy_delta_val = jiffy_delta->u.n.value;
delay_time_val = delay_time->u.n.value; delay_time_val = delay_time->u.n.value;
spin_unlock_irqrestore(&speakup_info.spinlock, spin_unlock_irqrestore(&speakup_info.spinlock,
flags); flags);
schedule_timeout(msecs_to_jiffies schedule_timeout(msecs_to_jiffies
(delay_time_val)); (delay_time_val));
jiff_max = jiffies + jiffy_delta_val; jiff_max = jiffies + jiffy_delta_val;
......
...@@ -260,7 +260,7 @@ static int synth_probe(struct spk_synth *synth) ...@@ -260,7 +260,7 @@ static int synth_probe(struct spk_synth *synth)
if (port_forced) { if (port_forced) {
synth_port = port_forced; synth_port = port_forced;
pr_info("probe forced to %x by kernel command line\n", pr_info("probe forced to %x by kernel command line\n",
synth_port); synth_port);
if (synth_request_region(synth_port-1, SYNTH_IO_EXTENT)) { if (synth_request_region(synth_port-1, SYNTH_IO_EXTENT)) {
pr_warn("sorry, port already reserved\n"); pr_warn("sorry, port already reserved\n");
return -EBUSY; return -EBUSY;
...@@ -269,7 +269,7 @@ static int synth_probe(struct spk_synth *synth) ...@@ -269,7 +269,7 @@ static int synth_probe(struct spk_synth *synth)
} else { } else {
for (i = 0; synth_portlist[i]; i++) { for (i = 0; synth_portlist[i]; i++) {
if (synth_request_region(synth_portlist[i], if (synth_request_region(synth_portlist[i],
SYNTH_IO_EXTENT)) { SYNTH_IO_EXTENT)) {
pr_warn pr_warn
("request_region: failed with 0x%x, %d\n", ("request_region: failed with 0x%x, %d\n",
synth_portlist[i], SYNTH_IO_EXTENT); synth_portlist[i], SYNTH_IO_EXTENT);
......
...@@ -71,7 +71,7 @@ static void spk_ttyio_ldisc_close(struct tty_struct *tty) ...@@ -71,7 +71,7 @@ static void spk_ttyio_ldisc_close(struct tty_struct *tty)
} }
static int spk_ttyio_receive_buf2(struct tty_struct *tty, static int spk_ttyio_receive_buf2(struct tty_struct *tty,
const unsigned char *cp, char *fp, int count) const unsigned char *cp, char *fp, int count)
{ {
struct spk_ldisc_data *ldisc_data = tty->disc_data; struct spk_ldisc_data *ldisc_data = tty->disc_data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment