From 2e3a641d8c6d963252fef5043e740ee3962373c1 Mon Sep 17 00:00:00 2001 From: Valentin Vidic Date: Sun, 10 Dec 2017 15:31:06 +0100 Subject: staging: pi433: add space before open parenthesis Fixes checkpatch error for missing spaces. Signed-off-by: Valentin Vidic Signed-off-by: Greg Kroah-Hartman --- drivers/staging/pi433/pi433_if.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/staging/pi433') diff --git a/drivers/staging/pi433/pi433_if.c b/drivers/staging/pi433/pi433_if.c index 32db3b3..9c1787e 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 */ -- cgit v1.1