staging: pi433: add space after comma
authorValentin Vidic <Valentin.Vidic@CARNet.hr>
Sun, 10 Dec 2017 14:31:07 +0000 (15:31 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Dec 2017 11:56:29 +0000 (12:56 +0100)
Fixes checkpatch error for missing spaces.

Signed-off-by: Valentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/pi433/pi433_if.c

index 9c1787ef14e3b9d79972a255b064537341580437..155d486f6cb34f1f17bd3a2cc6ec24a5e151fc53 100644 (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
        {