linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] staging: comedi: adv_pci1710: fix spelling mistake: "droput" -> "dropout"
@ 2019-04-15 17:49 Colin King
  2019-04-16  7:36 ` Mukesh Ojha
  2019-04-16 10:22 ` Ian Abbott
  0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2019-04-15 17:49 UTC (permalink / raw)
  To: Ian Abbott, H Hartley Sweeten, Greg Kroah-Hartman, devel
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a dev_error message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/staging/comedi/drivers/adv_pci1710.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/comedi/drivers/adv_pci1710.c b/drivers/staging/comedi/drivers/adv_pci1710.c
index 6a93b04f1fdf..dbff0f7e7cf5 100644
--- a/drivers/staging/comedi/drivers/adv_pci1710.c
+++ b/drivers/staging/comedi/drivers/adv_pci1710.c
@@ -317,7 +317,7 @@ static int pci1710_ai_read_sample(struct comedi_device *dev,
 		chan = sample >> 12;
 		if (chan != devpriv->act_chanlist[cur_chan]) {
 			dev_err(dev->class_dev,
-				"A/D data droput: received from channel %d, expected %d\n",
+				"A/D data dropout: received from channel %d, expected %d\n",
 				chan, devpriv->act_chanlist[cur_chan]);
 			return -ENODATA;
 		}
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] staging: comedi: adv_pci1710: fix spelling mistake: "droput" -> "dropout"
  2019-04-15 17:49 [PATCH] staging: comedi: adv_pci1710: fix spelling mistake: "droput" -> "dropout" Colin King
@ 2019-04-16  7:36 ` Mukesh Ojha
  2019-04-16 10:22 ` Ian Abbott
  1 sibling, 0 replies; 3+ messages in thread
From: Mukesh Ojha @ 2019-04-16  7:36 UTC (permalink / raw)
  To: Colin King, Ian Abbott, H Hartley Sweeten, Greg Kroah-Hartman, devel
  Cc: kernel-janitors, linux-kernel


On 4/15/2019 11:19 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There is a spelling mistake in a dev_error message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Cheers,
-Mukesh

> ---
>   drivers/staging/comedi/drivers/adv_pci1710.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/comedi/drivers/adv_pci1710.c b/drivers/staging/comedi/drivers/adv_pci1710.c
> index 6a93b04f1fdf..dbff0f7e7cf5 100644
> --- a/drivers/staging/comedi/drivers/adv_pci1710.c
> +++ b/drivers/staging/comedi/drivers/adv_pci1710.c
> @@ -317,7 +317,7 @@ static int pci1710_ai_read_sample(struct comedi_device *dev,
>   		chan = sample >> 12;
>   		if (chan != devpriv->act_chanlist[cur_chan]) {
>   			dev_err(dev->class_dev,
> -				"A/D data droput: received from channel %d, expected %d\n",
> +				"A/D data dropout: received from channel %d, expected %d\n",
>   				chan, devpriv->act_chanlist[cur_chan]);
>   			return -ENODATA;
>   		}

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] staging: comedi: adv_pci1710: fix spelling mistake: "droput" -> "dropout"
  2019-04-15 17:49 [PATCH] staging: comedi: adv_pci1710: fix spelling mistake: "droput" -> "dropout" Colin King
  2019-04-16  7:36 ` Mukesh Ojha
@ 2019-04-16 10:22 ` Ian Abbott
  1 sibling, 0 replies; 3+ messages in thread
From: Ian Abbott @ 2019-04-16 10:22 UTC (permalink / raw)
  To: Colin King, H Hartley Sweeten, Greg Kroah-Hartman, devel
  Cc: kernel-janitors, linux-kernel

On 15/04/2019 18:49, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a dev_error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Looks good, thanks!

Reviewed-by: Ian Abbott <abbotti@mev.co.uk>

> ---
>   drivers/staging/comedi/drivers/adv_pci1710.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/comedi/drivers/adv_pci1710.c b/drivers/staging/comedi/drivers/adv_pci1710.c
> index 6a93b04f1fdf..dbff0f7e7cf5 100644
> --- a/drivers/staging/comedi/drivers/adv_pci1710.c
> +++ b/drivers/staging/comedi/drivers/adv_pci1710.c
> @@ -317,7 +317,7 @@ static int pci1710_ai_read_sample(struct comedi_device *dev,
>   		chan = sample >> 12;
>   		if (chan != devpriv->act_chanlist[cur_chan]) {
>   			dev_err(dev->class_dev,
> -				"A/D data droput: received from channel %d, expected %d\n",
> +				"A/D data dropout: received from channel %d, expected %d\n",
>   				chan, devpriv->act_chanlist[cur_chan]);
>   			return -ENODATA;
>   		}
> 


-- 
-=( Ian Abbott <abbotti@mev.co.uk> || Web: www.mev.co.uk )=-
-=( MEV Ltd. is a company registered in England & Wales. )=-
-=( Registered number: 02862268.  Registered address:    )=-
-=( 15 West Park Road, Bramhall, STOCKPORT, SK7 3JZ, UK. )=-

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-16 10:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-15 17:49 [PATCH] staging: comedi: adv_pci1710: fix spelling mistake: "droput" -> "dropout" Colin King
2019-04-16  7:36 ` Mukesh Ojha
2019-04-16 10:22 ` Ian Abbott

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).