1
0
Fork 0

staging: speakup: Spaces around operator

Add spaces around bitwise AND operator

Signed-off-by: Daniela Mormocea <daniela.mormocea@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.2
Daniela Mormocea 2019-03-06 14:32:05 +02:00 committed by Greg Kroah-Hartman
parent 730551f754
commit 50d280f3e3
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ static int dt_wait_dma(void)
if (!dt_waitbit(STAT_dma_ready))
return 0;
while (--timeout > 0) {
if ((dt_getstatus()&STAT_dma_state) == state)
if ((dt_getstatus() & STAT_dma_state) == state)
return 1;
udelay(50);
}