From: Valentin Vidic Date: Sun, 10 Dec 2017 14:31:06 +0000 (+0100) Subject: staging: pi433: add space before open parenthesis X-Git-Tag: rel_imx_4.19.35_1.1.0~10789^2~331 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=2e3a641d8c6d963252fef5043e740ee3962373c1;p=linux.git staging: pi433: add space before open parenthesis Fixes checkpatch error for missing spaces. Signed-off-by: Valentin Vidic Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/pi433/pi433_if.c b/drivers/staging/pi433/pi433_if.c index 32db3b320cbd..9c1787ef14e3 100644 --- a/drivers/staging/pi433/pi433_if.c +++ b/drivers/staging/pi433/pi433_if.c @@ -438,7 +438,7 @@ pi433_receive(void *data) /* wait for any tx to finish */ dev_dbg(dev->dev,"rx: going to wait for any tx to finish"); retval = wait_event_interruptible(dev->rx_wait_queue, !dev->tx_active); - if(retval) /* wait was interrupted */ + if (retval) /* wait was interrupted */ { dev->interrupt_rx_allowed = true; wake_up_interruptible(&dev->tx_wait_queue); @@ -725,7 +725,7 @@ pi433_tx_thread(void *data) device->free_in_fifo = FIFO_SIZE; position = 0; repetitions = tx_cfg.repetitions; - while( (repetitions > 0) && (size > position) ) + while ( (repetitions > 0) && (size > position) ) { if ( (size - position) > device->free_in_fifo) { /* msg to big for fifo - take a part */