forked from Minki/linux
staging: speakup: Removed blank line after open braces.
Remove blank line after open braces, to fix the following checkpatch issue: CHECK: Blank lines aren't necessary after an open brace '{' Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
904cf12dd3
commit
8190e15c40
@ -129,7 +129,6 @@ static ssize_t chars_chartab_store(struct kobject *kobj,
|
||||
|
||||
spin_lock_irqsave(&speakup_info.spinlock, flags);
|
||||
while (cp < end) {
|
||||
|
||||
while ((cp < end) && (*cp == ' ' || *cp == '\t'))
|
||||
cp++;
|
||||
|
||||
|
@ -97,7 +97,6 @@ static irqreturn_t synth_readbuf_handler(int irq, void *dev_id)
|
||||
|
||||
spin_lock_irqsave(&speakup_info.spinlock, flags);
|
||||
while (inb_p(speakup_info.port_tts + UART_LSR) & UART_LSR_DR) {
|
||||
|
||||
c = inb_p(speakup_info.port_tts+UART_RX);
|
||||
synth->read_buff_add((u_char)c);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user