staging: pi433: Fix a couple of spelling mistakes
Trivial fix to spelling mistakes in dev_dbg debug messages "wiat" -> "wait" "fonud" -> "found" Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
af9f5e7d5a
commit
28eb855564
@ -618,7 +618,7 @@ pi433_tx_thread(void *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* we are done. Wait for packet to get sent */
|
/* we are done. Wait for packet to get sent */
|
||||||
dev_dbg(device->dev, "thread: wiat for packet to get sent/fifo to be empty");
|
dev_dbg(device->dev, "thread: wait for packet to get sent/fifo to be empty");
|
||||||
wait_event_interruptible(device->fifo_wait_queue,
|
wait_event_interruptible(device->fifo_wait_queue,
|
||||||
device->free_in_fifo == FIFO_SIZE ||
|
device->free_in_fifo == FIFO_SIZE ||
|
||||||
kthread_should_stop() );
|
kthread_should_stop() );
|
||||||
@ -1101,7 +1101,7 @@ static int pi433_probe(struct spi_device *spi)
|
|||||||
switch(retval)
|
switch(retval)
|
||||||
{
|
{
|
||||||
case 0x24:
|
case 0x24:
|
||||||
dev_dbg(&spi->dev, "fonud pi433 (ver. 0x%x)", retval);
|
dev_dbg(&spi->dev, "found pi433 (ver. 0x%x)", retval);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
dev_dbg(&spi->dev, "unknown chip version: 0x%x", retval);
|
dev_dbg(&spi->dev, "unknown chip version: 0x%x", retval);
|
||||||
|
Loading…
Reference in New Issue
Block a user