netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] wimax/i2400m: fix spelling mistake "unitialized" -> "uninitialized"
@ 2018-09-24 17:18 Colin King
  2018-09-24 17:27 ` Sergei Shtylyov
  0 siblings, 1 reply; 3+ messages in thread
From: Colin King @ 2018-09-24 17:18 UTC (permalink / raw)
  To: Inaky Perez-Gonzalez, linux-wimax, David S . Miller, netdev
  Cc: kernel-janitors, linux-kernel

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

Trivial fix to spelling mistake in ms_to_errno array of error messages

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

diff --git a/drivers/net/wimax/i2400m/control.c b/drivers/net/wimax/i2400m/control.c
index 094cea775d0c..0475ad553707 100644
--- a/drivers/net/wimax/i2400m/control.c
+++ b/drivers/net/wimax/i2400m/control.c
@@ -257,7 +257,7 @@ static const struct
 	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accesibility error", -EIO },
 	[I2400M_MS_BUSY] = { "busy", -EBUSY },
 	[I2400M_MS_CORRUPTED_TLV] = { "corrupted TLV", -EILSEQ },
-	[I2400M_MS_UNINITIALIZED] = { "not unitialized", -EILSEQ },
+	[I2400M_MS_UNINITIALIZED] = { "not uninitialized", -EILSEQ },
 	[I2400M_MS_UNKNOWN_ERROR] = { "unknown error", -EIO },
 	[I2400M_MS_PRODUCTION_ERROR] = { "production error", -EIO },
 	[I2400M_MS_NO_RF] = { "no RF", -EIO },
-- 
2.17.1

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

* Re: [PATCH] wimax/i2400m: fix spelling mistake "unitialized" -> "uninitialized"
  2018-09-24 17:18 [PATCH] wimax/i2400m: fix spelling mistake "unitialized" -> "uninitialized" Colin King
@ 2018-09-24 17:27 ` Sergei Shtylyov
  2018-09-24 17:35   ` Colin Ian King
  0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2018-09-24 17:27 UTC (permalink / raw)
  To: Colin King, Inaky Perez-Gonzalez, linux-wimax, David S . Miller,
	netdev
  Cc: kernel-janitors, linux-kernel

On 09/24/2018 08:18 PM, Colin King wrote:

> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in ms_to_errno array of error messages
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/net/wimax/i2400m/control.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/wimax/i2400m/control.c b/drivers/net/wimax/i2400m/control.c
> index 094cea775d0c..0475ad553707 100644
> --- a/drivers/net/wimax/i2400m/control.c
> +++ b/drivers/net/wimax/i2400m/control.c
> @@ -257,7 +257,7 @@ static const struct
>  	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accesibility error", -EIO },
>  	[I2400M_MS_BUSY] = { "busy", -EBUSY },
>  	[I2400M_MS_CORRUPTED_TLV] = { "corrupted TLV", -EILSEQ },
> -	[I2400M_MS_UNINITIALIZED] = { "not unitialized", -EILSEQ },
> +	[I2400M_MS_UNINITIALIZED] = { "not uninitialized", -EILSEQ },

   I suspect they rather meant "not initialized".

[...]

MBR, Sergei

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

* Re: [PATCH] wimax/i2400m: fix spelling mistake "unitialized" -> "uninitialized"
  2018-09-24 17:27 ` Sergei Shtylyov
@ 2018-09-24 17:35   ` Colin Ian King
  0 siblings, 0 replies; 3+ messages in thread
From: Colin Ian King @ 2018-09-24 17:35 UTC (permalink / raw)
  To: Sergei Shtylyov, Inaky Perez-Gonzalez, linux-wimax,
	David S . Miller, netdev
  Cc: kernel-janitors, linux-kernel

On 24/09/18 18:27, Sergei Shtylyov wrote:
> On 09/24/2018 08:18 PM, Colin King wrote:
> 
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> Trivial fix to spelling mistake in ms_to_errno array of error messages
>>
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>> ---
>>  drivers/net/wimax/i2400m/control.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/wimax/i2400m/control.c b/drivers/net/wimax/i2400m/control.c
>> index 094cea775d0c..0475ad553707 100644
>> --- a/drivers/net/wimax/i2400m/control.c
>> +++ b/drivers/net/wimax/i2400m/control.c
>> @@ -257,7 +257,7 @@ static const struct
>>  	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accesibility error", -EIO },
>>  	[I2400M_MS_BUSY] = { "busy", -EBUSY },
>>  	[I2400M_MS_CORRUPTED_TLV] = { "corrupted TLV", -EILSEQ },
>> -	[I2400M_MS_UNINITIALIZED] = { "not unitialized", -EILSEQ },
>> +	[I2400M_MS_UNINITIALIZED] = { "not uninitialized", -EILSEQ },
> 
>    I suspect they rather meant "not initialized".

Of course, that makes far more sense. I send a V2.

> 
> [...]
> 
> MBR, Sergei
> 

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

end of thread, other threads:[~2018-09-24 17:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-24 17:18 [PATCH] wimax/i2400m: fix spelling mistake "unitialized" -> "uninitialized" Colin King
2018-09-24 17:27 ` Sergei Shtylyov
2018-09-24 17:35   ` Colin Ian King

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