Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936023AbdGTLIu (ORCPT ); Thu, 20 Jul 2017 07:08:50 -0400 Received: from wp244.webpack.hosteurope.de ([80.237.133.13]:53382 "EHLO wp244.webpack.hosteurope.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934300AbdGTLIt (ORCPT ); Thu, 20 Jul 2017 07:08:49 -0400 Date: Thu, 20 Jul 2017 13:08:46 +0200 (CEST) From: Marcus Wolf To: Colin King , Greg Kroah-Hartman , devel@driverdev.osuosl.org Cc: linux-kernel@vger.kernel.org Message-ID: <982773044.3644.1500548926314@ox.hosteurope.de> In-Reply-To: <20170718054033.8314-1-colin.king@canonical.com> References: <20170718054033.8314-1-colin.king@canonical.com> Subject: Re: [PATCH] staging: pi433: Fix a couple of spelling mistakes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Priority: 3 Importance: Medium X-Mailer: Open-Xchange Mailer v7.8.3-Rev27 X-Originating-Client: com.openexchange.ox.gui.dhtml X-bounce-key: webpack.hosteurope.de;marcus.wolf@wolf-entwicklungen.de;1500548929;004f5939; X-HE-SMSGID: 1dY9K2-0005UV-DZ Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1384 Lines: 47 Reviewed-by: Marcus Wolf > Colin King hat am 18. Juli 2017 um 07:40 > geschrieben: > > > From: Colin Ian King > > Trivial fix to spelling mistakes in dev_dbg debug messages > > "wiat" -> "wait" > "fonud" -> "found" > > Signed-off-by: Colin Ian King > --- > drivers/staging/pi433/pi433_if.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/pi433/pi433_if.c > b/drivers/staging/pi433/pi433_if.c > index 1bc478a7f49e..d9328ce5ec1d 100644 > --- a/drivers/staging/pi433/pi433_if.c > +++ b/drivers/staging/pi433/pi433_if.c > @@ -618,7 +618,7 @@ pi433_tx_thread(void *data) > } > > /* 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, > device->free_in_fifo == FIFO_SIZE || > kthread_should_stop() ); > @@ -1101,7 +1101,7 @@ static int pi433_probe(struct spi_device *spi) > switch(retval) > { > case 0x24: > - dev_dbg(&spi->dev, "fonud pi433 (ver. 0x%x)", retval); > + dev_dbg(&spi->dev, "found pi433 (ver. 0x%x)", retval); > break; > default: > dev_dbg(&spi->dev, "unknown chip version: 0x%x", retval); > -- > 2.11.0 > >