staging: pi433: add space after comma

Fixes checkpatch error for missing spaces.

Signed-off-by: Valentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Valentin Vidic 2017-12-10 15:31:07 +01:00 committed by Greg Kroah-Hartman
parent 2e3a641d8c
commit dd30cfebb8

View File

@ -436,7 +436,7 @@ pi433_receive(void *data)
dev->interrupt_rx_allowed = false;
/* wait for any tx to finish */
dev_dbg(dev->dev,"rx: going to 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 */
{
@ -490,7 +490,7 @@ pi433_receive(void *data)
goto abort;
}
bytes_total = dev->rx_cfg.fixed_message_length;
dev_dbg(dev->dev,"rx: msg len set to %d by fixed length", bytes_total);
dev_dbg(dev->dev, "rx: msg len set to %d by fixed length", bytes_total);
}
else
{