From: Konrad Zapalowicz Date: Wed, 6 Aug 2014 19:01:25 +0000 (+0200) Subject: staging: dgnc: Fix braces {} are not necessary for single statement blocks X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=13d1773ace622802e99f2aae577f30eab444eb55;p=deliverable%2Flinux.git staging: dgnc: Fix braces {} are not necessary for single statement blocks This commit fixes the following checkpath warning in dgnc_neo.c file: 'braces {} are not necessary for single statement blocks' Signed-off-by: Konrad Zapalowicz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dgnc/dgnc_neo.c b/drivers/staging/dgnc/dgnc_neo.c index e6aeda3dae93..b4198e0d5f0c 100644 --- a/drivers/staging/dgnc/dgnc_neo.c +++ b/drivers/staging/dgnc/dgnc_neo.c @@ -1804,9 +1804,8 @@ static uint neo_get_uart_bytes_left(struct channel_t *ch) /* Determine whether the Transmitter is empty or not */ if (!(lsr & UART_LSR_TEMT)) { - if (ch->ch_flags & CH_TX_FIFO_EMPTY) { + if (ch->ch_flags & CH_TX_FIFO_EMPTY) tasklet_schedule(&ch->ch_bd->helper_tasklet); - } left = 1; } else { ch->ch_flags |= (CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);