linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][misc-next] misc: cardreader: fix spelling mistake "invailid" -> "invalid"
@ 2018-12-06  9:19 Colin King
  2018-12-07 18:04 ` Oleksij Rempel
  2018-12-11  9:36 ` Ulf Hansson
  0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2018-12-06  9:19 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, Oleksij Rempel, Ulf Hansson
  Cc: kernel-janitors, linux-kernel

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

There are spelling mistakes in a couple of dev_dbg messages, fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/misc/cardreader/alcor_pci.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/misc/cardreader/alcor_pci.c b/drivers/misc/cardreader/alcor_pci.c
index 6872b8e29b4d..bcb10fa4bc3a 100644
--- a/drivers/misc/cardreader/alcor_pci.c
+++ b/drivers/misc/cardreader/alcor_pci.c
@@ -105,7 +105,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
 	while (1) {
 		pci_read_config_dword(pci, where, &val32);
 		if (val32 == 0xffffffff) {
-			dev_dbg(priv->dev, "find_cap_offset invailid value %x.\n",
+			dev_dbg(priv->dev, "find_cap_offset invalid value %x.\n",
 				val32);
 			return 0;
 		}
@@ -116,7 +116,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
 		}
 
 		if ((val32 & 0xff00) == 0x00) {
-			dev_dbg(priv->dev, "pci_find_cap_offset invailid value %x.\n",
+			dev_dbg(priv->dev, "pci_find_cap_offset invalid value %x.\n",
 				val32);
 			break;
 		}
-- 
2.19.1


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

* Re: [PATCH][misc-next] misc: cardreader: fix spelling mistake "invailid" -> "invalid"
  2018-12-06  9:19 [PATCH][misc-next] misc: cardreader: fix spelling mistake "invailid" -> "invalid" Colin King
@ 2018-12-07 18:04 ` Oleksij Rempel
  2018-12-11  9:36 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Oleksij Rempel @ 2018-12-07 18:04 UTC (permalink / raw)
  To: Colin King, Arnd Bergmann, Greg Kroah-Hartman, Ulf Hansson
  Cc: kernel-janitors, linux-kernel


[-- Attachment #1.1: Type: text/plain, Size: 1351 bytes --]

Am 06.12.18 um 10:19 schrieb Colin King:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There are spelling mistakes in a couple of dev_dbg messages, fix these.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>

thanks!

> ---
>  drivers/misc/cardreader/alcor_pci.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/misc/cardreader/alcor_pci.c b/drivers/misc/cardreader/alcor_pci.c
> index 6872b8e29b4d..bcb10fa4bc3a 100644
> --- a/drivers/misc/cardreader/alcor_pci.c
> +++ b/drivers/misc/cardreader/alcor_pci.c
> @@ -105,7 +105,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
>  	while (1) {
>  		pci_read_config_dword(pci, where, &val32);
>  		if (val32 == 0xffffffff) {
> -			dev_dbg(priv->dev, "find_cap_offset invailid value %x.\n",
> +			dev_dbg(priv->dev, "find_cap_offset invalid value %x.\n",
>  				val32);
>  			return 0;
>  		}
> @@ -116,7 +116,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
>  		}
>  
>  		if ((val32 & 0xff00) == 0x00) {
> -			dev_dbg(priv->dev, "pci_find_cap_offset invailid value %x.\n",
> +			dev_dbg(priv->dev, "pci_find_cap_offset invalid value %x.\n",
>  				val32);
>  			break;
>  		}
> 


-- 
Regards,
Oleksij


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH][misc-next] misc: cardreader: fix spelling mistake "invailid" -> "invalid"
  2018-12-06  9:19 [PATCH][misc-next] misc: cardreader: fix spelling mistake "invailid" -> "invalid" Colin King
  2018-12-07 18:04 ` Oleksij Rempel
@ 2018-12-11  9:36 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2018-12-11  9:36 UTC (permalink / raw)
  To: Colin King
  Cc: Arnd Bergmann, Greg Kroah-Hartman, Oleksij Rempel,
	kernel-janitors, Linux Kernel Mailing List

On Thu, 6 Dec 2018 at 10:19, Colin King <colin.king@canonical.com> wrote:
>
> From: Colin Ian King <colin.king@canonical.com>
>
> There are spelling mistakes in a couple of dev_dbg messages, fix these.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Applied for next (in my mmc tree), thanks!

Kind regards
Uffe

> ---
>  drivers/misc/cardreader/alcor_pci.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/misc/cardreader/alcor_pci.c b/drivers/misc/cardreader/alcor_pci.c
> index 6872b8e29b4d..bcb10fa4bc3a 100644
> --- a/drivers/misc/cardreader/alcor_pci.c
> +++ b/drivers/misc/cardreader/alcor_pci.c
> @@ -105,7 +105,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
>         while (1) {
>                 pci_read_config_dword(pci, where, &val32);
>                 if (val32 == 0xffffffff) {
> -                       dev_dbg(priv->dev, "find_cap_offset invailid value %x.\n",
> +                       dev_dbg(priv->dev, "find_cap_offset invalid value %x.\n",
>                                 val32);
>                         return 0;
>                 }
> @@ -116,7 +116,7 @@ static int alcor_pci_find_cap_offset(struct alcor_pci_priv *priv,
>                 }
>
>                 if ((val32 & 0xff00) == 0x00) {
> -                       dev_dbg(priv->dev, "pci_find_cap_offset invailid value %x.\n",
> +                       dev_dbg(priv->dev, "pci_find_cap_offset invalid value %x.\n",
>                                 val32);
>                         break;
>                 }
> --
> 2.19.1
>

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

end of thread, other threads:[~2018-12-11  9:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-06  9:19 [PATCH][misc-next] misc: cardreader: fix spelling mistake "invailid" -> "invalid" Colin King
2018-12-07 18:04 ` Oleksij Rempel
2018-12-11  9:36 ` Ulf Hansson

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).