Commit ebc1dea2 authored by Valentin Vidic's avatar Valentin Vidic Committed by Greg Kroah-Hartman
Browse files

staging: pi433: replace printk calls with dev_dbg



Fixes checkpatch warning:

  WARNING: printk() should include KERN_<LEVEL> facility level

Signed-off-by: default avatarValentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 57fa80f5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -718,7 +718,7 @@ pi433_tx_thread(void *data)
			retval = wait_event_interruptible(device->fifo_wait_queue,
							  device->free_in_fifo > 0);
			if (retval) {
				printk("ABORT\n");
				dev_dbg(device->dev, "ABORT\n");
				goto abort;
			}
		}
@@ -729,7 +729,7 @@ pi433_tx_thread(void *data)
					 device->free_in_fifo == FIFO_SIZE ||
					 kthread_should_stop());
		if (kthread_should_stop())
			printk("ABORT\n");
			dev_dbg(device->dev, "ABORT\n");

		/* STOP_TRANSMISSION */
		dev_dbg(device->dev, "thread: Packet sent. Set mode to stby.");