linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] thunderbolt: fix spelling mistake: "missmatch" -> "mismatch"
@ 2016-06-28 12:19 Colin King
  2016-07-12 21:45 ` Andreas Noever
  0 siblings, 1 reply; 5+ messages in thread
From: Colin King @ 2016-06-28 12:19 UTC (permalink / raw)
  To: Andreas Noever; +Cc: linux-kernel

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

trivial fix to spelling mistake in warning message

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

diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c
index 2b9602c..029b6a5 100644
--- a/drivers/thunderbolt/eeprom.c
+++ b/drivers/thunderbolt/eeprom.c
@@ -282,7 +282,7 @@ int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid)
 
 	crc = tb_crc8(data + 1, 8);
 	if (crc != data[0]) {
-		tb_sw_warn(sw, "uid crc8 missmatch (expected: %#x, got: %#x)\n",
+		tb_sw_warn(sw, "uid crc8 mismatch (expected: %#x, got: %#x)\n",
 				data[0], crc);
 		return -EIO;
 	}
-- 
2.8.1

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

* Re: [PATCH] thunderbolt: fix spelling mistake: "missmatch" -> "mismatch"
  2016-06-28 12:19 [PATCH] thunderbolt: fix spelling mistake: "missmatch" -> "mismatch" Colin King
@ 2016-07-12 21:45 ` Andreas Noever
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Noever @ 2016-07-12 21:45 UTC (permalink / raw)
  To: Colin King, Greg KH; +Cc: linux-kernel

On Tue, Jun 28, 2016 at 2:19 PM, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in warning message
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/thunderbolt/eeprom.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c
> index 2b9602c..029b6a5 100644
> --- a/drivers/thunderbolt/eeprom.c
> +++ b/drivers/thunderbolt/eeprom.c
> @@ -282,7 +282,7 @@ int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid)
>
>         crc = tb_crc8(data + 1, 8);
>         if (crc != data[0]) {
> -               tb_sw_warn(sw, "uid crc8 missmatch (expected: %#x, got: %#x)\n",
> +               tb_sw_warn(sw, "uid crc8 mismatch (expected: %#x, got: %#x)\n",
>                                 data[0], crc);
>                 return -EIO;
>         }
> --
> 2.8.1
>

Thanks!

[+ Greg: for your queue]

Signed-off-by: Andreas Noever <andreas.noever@gmail.com>

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

* Re: [PATCH] thunderbolt: fix spelling mistake: "missmatch" -> "mismatch"
  2017-06-05 17:02 ` Andreas Noever
@ 2017-06-09  9:32   ` Greg KH
  0 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2017-06-09  9:32 UTC (permalink / raw)
  To: Andreas Noever; +Cc: Colin King, linux-kernel

On Mon, Jun 05, 2017 at 07:02:54PM +0200, Andreas Noever wrote:
> On Thu, May 18, 2017 at 9:42 AM, Colin King <colin.king@canonical.com> wrote:
> > From: Colin Ian King <colin.king@canonical.com>
> >
> > Trivial fix to spelling mistake in tb_sw_warn warning message
> >
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > ---
> >  drivers/thunderbolt/eeprom.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c
> > index 6392990c984d..1c3eb937a728 100644
> > --- a/drivers/thunderbolt/eeprom.c
> > +++ b/drivers/thunderbolt/eeprom.c
> > @@ -283,7 +283,7 @@ int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid)
> >
> >         crc = tb_crc8(data + 1, 8);
> >         if (crc != data[0]) {
> > -               tb_sw_warn(sw, "uid crc8 missmatch (expected: %#x, got: %#x)\n",
> > +               tb_sw_warn(sw, "uid crc8 mismatch (expected: %#x, got: %#x)\n",
> >                                 data[0], crc);
> >                 return -EIO;
> >         }
> > --
> > 2.11.0
> >
> 
> Signed-off-by: Andreas Noever <andreas.noever@gmail.com>
> 
> Greg, I believe that this line survived Mika's series. Would you add it as well?

Will do, thanks.

greg k-h

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

* Re: [PATCH] thunderbolt: fix spelling mistake: "missmatch" -> "mismatch"
  2017-05-18  7:42 Colin King
@ 2017-06-05 17:02 ` Andreas Noever
  2017-06-09  9:32   ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Noever @ 2017-06-05 17:02 UTC (permalink / raw)
  To: Colin King, Greg KH; +Cc: linux-kernel

On Thu, May 18, 2017 at 9:42 AM, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Trivial fix to spelling mistake in tb_sw_warn warning message
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/thunderbolt/eeprom.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c
> index 6392990c984d..1c3eb937a728 100644
> --- a/drivers/thunderbolt/eeprom.c
> +++ b/drivers/thunderbolt/eeprom.c
> @@ -283,7 +283,7 @@ int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid)
>
>         crc = tb_crc8(data + 1, 8);
>         if (crc != data[0]) {
> -               tb_sw_warn(sw, "uid crc8 missmatch (expected: %#x, got: %#x)\n",
> +               tb_sw_warn(sw, "uid crc8 mismatch (expected: %#x, got: %#x)\n",
>                                 data[0], crc);
>                 return -EIO;
>         }
> --
> 2.11.0
>

Signed-off-by: Andreas Noever <andreas.noever@gmail.com>

Greg, I believe that this line survived Mika's series. Would you add it as well?

Thanks,
Andreas

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

* [PATCH] thunderbolt: fix spelling mistake: "missmatch" -> "mismatch"
@ 2017-05-18  7:42 Colin King
  2017-06-05 17:02 ` Andreas Noever
  0 siblings, 1 reply; 5+ messages in thread
From: Colin King @ 2017-05-18  7:42 UTC (permalink / raw)
  To: Andreas Noever; +Cc: linux-kernel

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

Trivial fix to spelling mistake in tb_sw_warn warning message

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

diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c
index 6392990c984d..1c3eb937a728 100644
--- a/drivers/thunderbolt/eeprom.c
+++ b/drivers/thunderbolt/eeprom.c
@@ -283,7 +283,7 @@ int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid)
 
 	crc = tb_crc8(data + 1, 8);
 	if (crc != data[0]) {
-		tb_sw_warn(sw, "uid crc8 missmatch (expected: %#x, got: %#x)\n",
+		tb_sw_warn(sw, "uid crc8 mismatch (expected: %#x, got: %#x)\n",
 				data[0], crc);
 		return -EIO;
 	}
-- 
2.11.0

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

end of thread, other threads:[~2017-06-09  9:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-28 12:19 [PATCH] thunderbolt: fix spelling mistake: "missmatch" -> "mismatch" Colin King
2016-07-12 21:45 ` Andreas Noever
2017-05-18  7:42 Colin King
2017-06-05 17:02 ` Andreas Noever
2017-06-09  9:32   ` Greg KH

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