Skip to content

Commit

Permalink
staging: pi433: pi433_if.c codestyle fix missing blank
Browse files Browse the repository at this point in the history
This patch fixes the following checkpatch.pl error:

ERROR: space required after that ',' (ctx:VxV)
torvalds#342: FILE: pi433_if.c:342:
+       dev_dbg(dev->dev,"rx: going to wait for any tx to finish");

Signed-off-by: Oliver Graute <[email protected]>
  • Loading branch information
redbrain17 authored and 0day robot committed Dec 2, 2017
1 parent b764227 commit d906d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/pi433/pi433_if.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,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 */
{
Expand Down

0 comments on commit d906d5d

Please sign in to comment.