diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-09-24 18:39:51 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-26 20:09:58 -0700 |
commit | 079db3fd4ef164a59006425a988b1c73639fade8 (patch) | |
tree | 59c70d7ec27f1e1559c3677cac58f62f3cc0ef87 /drivers/net/wimax | |
parent | 5a94df70d3878ae597dd8331ec0add491bdfe851 (diff) | |
download | blackbird-op-linux-079db3fd4ef164a59006425a988b1c73639fade8.tar.gz blackbird-op-linux-079db3fd4ef164a59006425a988b1c73639fade8.zip |
wimax/i2400m: fix spelling mistake "not unitialized" -> "uninitialized"
Trivial fix to spelling mistake in ms_to_errno array of error messages
and remove confusing "not" from the error text since the error code
refers to an uninitialized error code.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wimax')
-rw-r--r-- | drivers/net/wimax/i2400m/control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/control.c b/drivers/net/wimax/i2400m/control.c index 094cea775d0c..ef298d8525c5 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] = { "uninitialized", -EILSEQ }, [I2400M_MS_UNKNOWN_ERROR] = { "unknown error", -EIO }, [I2400M_MS_PRODUCTION_ERROR] = { "production error", -EIO }, [I2400M_MS_NO_RF] = { "no RF", -EIO }, |