linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] wimax/i2400m: fix spelling mistake "accesibility" -> "accessibility"
@ 2018-11-26 15:29 Colin King
  0 siblings, 0 replies; 3+ messages in thread
From: Colin King @ 2018-11-26 15:29 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>

The error message text contains a trivial spelling mistake, fix it.

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 ef298d8525c5..6837fac3987b 100644
--- a/drivers/net/wimax/i2400m/control.c
+++ b/drivers/net/wimax/i2400m/control.c
@@ -254,7 +254,7 @@ static const struct
 	[I2400M_MS_ILLEGAL_VALUE] = { "illegal value", -EINVAL },
 	[I2400M_MS_MISSING_PARAMS] = { "missing parameters", -ENOMSG },
 	[I2400M_MS_VERSION_ERROR] = { "bad version", -EIO },
-	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accesibility error", -EIO },
+	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accessibility error", -EIO },
 	[I2400M_MS_BUSY] = { "busy", -EBUSY },
 	[I2400M_MS_CORRUPTED_TLV] = { "corrupted TLV", -EILSEQ },
 	[I2400M_MS_UNINITIALIZED] = { "uninitialized", -EILSEQ },
-- 
2.19.1


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

* Re: [PATCH] wimax/i2400m: fix spelling mistake "accesibility" -> "accessibility"
  2019-04-15 10:15 Colin King
@ 2019-04-15 14:53 ` Mukesh Ojha
  0 siblings, 0 replies; 3+ messages in thread
From: Mukesh Ojha @ 2019-04-15 14:53 UTC (permalink / raw)
  To: Colin King, Inaky Perez-Gonzalez, linux-wimax, David S . Miller, netdev
  Cc: kernel-janitors, linux-kernel


On 4/15/2019 3:45 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There is a spelling mistake in the I2400M_MS_ACCESSIBILITY_ERROR message
> string, fix this.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>


Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Cheers,
-Mukesh

> ---
>   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 ef298d8525c5..6837fac3987b 100644
> --- a/drivers/net/wimax/i2400m/control.c
> +++ b/drivers/net/wimax/i2400m/control.c
> @@ -254,7 +254,7 @@ static const struct
>   	[I2400M_MS_ILLEGAL_VALUE] = { "illegal value", -EINVAL },
>   	[I2400M_MS_MISSING_PARAMS] = { "missing parameters", -ENOMSG },
>   	[I2400M_MS_VERSION_ERROR] = { "bad version", -EIO },
> -	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accesibility error", -EIO },
> +	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accessibility error", -EIO },
>   	[I2400M_MS_BUSY] = { "busy", -EBUSY },
>   	[I2400M_MS_CORRUPTED_TLV] = { "corrupted TLV", -EILSEQ },
>   	[I2400M_MS_UNINITIALIZED] = { "uninitialized", -EILSEQ },

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

* [PATCH] wimax/i2400m: fix spelling mistake "accesibility" -> "accessibility"
@ 2019-04-15 10:15 Colin King
  2019-04-15 14:53 ` Mukesh Ojha
  0 siblings, 1 reply; 3+ messages in thread
From: Colin King @ 2019-04-15 10:15 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>

There is a spelling mistake in the I2400M_MS_ACCESSIBILITY_ERROR message
string, fix this.

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 ef298d8525c5..6837fac3987b 100644
--- a/drivers/net/wimax/i2400m/control.c
+++ b/drivers/net/wimax/i2400m/control.c
@@ -254,7 +254,7 @@ static const struct
 	[I2400M_MS_ILLEGAL_VALUE] = { "illegal value", -EINVAL },
 	[I2400M_MS_MISSING_PARAMS] = { "missing parameters", -ENOMSG },
 	[I2400M_MS_VERSION_ERROR] = { "bad version", -EIO },
-	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accesibility error", -EIO },
+	[I2400M_MS_ACCESSIBILITY_ERROR] = { "accessibility error", -EIO },
 	[I2400M_MS_BUSY] = { "busy", -EBUSY },
 	[I2400M_MS_CORRUPTED_TLV] = { "corrupted TLV", -EILSEQ },
 	[I2400M_MS_UNINITIALIZED] = { "uninitialized", -EILSEQ },
-- 
2.20.1


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

end of thread, other threads:[~2019-04-15 14:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-26 15:29 [PATCH] wimax/i2400m: fix spelling mistake "accesibility" -> "accessibility" Colin King
2019-04-15 10:15 Colin King
2019-04-15 14:53 ` Mukesh Ojha

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