aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup/speakup_decpc.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-10-30 11:09:59 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-11-07 12:35:10 +0100
commitd427e60ae7cab8ae6537ca45123f9b4c5b06c0d9 (patch)
tree1a84fb7a7f7daa03116c17734280b058f865c578 /drivers/staging/speakup/speakup_decpc.c
parentstaging: xgifb: clean an indentation issue (diff)
downloadlinux-dev-d427e60ae7cab8ae6537ca45123f9b4c5b06c0d9.tar.xz
linux-dev-d427e60ae7cab8ae6537ca45123f9b4c5b06c0d9.zip
staging: speakup: clean up few indentation issues
Trivial fix to clean up indentation issues across the driver Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup/speakup_decpc.c')
-rw-r--r--drivers/staging/speakup/speakup_decpc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/speakup/speakup_decpc.c b/drivers/staging/speakup/speakup_decpc.c
index 6649309e0342..459ee0c0bd57 100644
--- a/drivers/staging/speakup/speakup_decpc.c
+++ b/drivers/staging/speakup/speakup_decpc.c
@@ -302,12 +302,12 @@ static void synth_flush(struct spk_synth *synth)
while (dt_ctrl(CTRL_flush)) {
if (--timeout == 0)
break;
-udelay(50);
+ udelay(50);
}
for (timeout = 0; timeout < 10; timeout++) {
if (dt_waitbit(STAT_dma_ready))
break;
-udelay(50);
+ udelay(50);
}
outb_p(DMA_sync, speakup_info.port_tts + 4);
outb_p(0, speakup_info.port_tts + 4);
@@ -315,7 +315,7 @@ udelay(50);
for (timeout = 0; timeout < 10; timeout++) {
if (!(dt_getstatus() & STAT_flushing))
break;
-udelay(50);
+ udelay(50);
}
dma_state = dt_getstatus() & STAT_dma_state;
dma_state ^= STAT_dma_state;