Skip to content

Commit 079db3f

Browse files
Colin Ian Kingdavem330
authored andcommitted
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>
1 parent 5a94df7 commit 079db3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/wimax/i2400m/control.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ static const struct
257257
[I2400M_MS_ACCESSIBILITY_ERROR] = { "accesibility error", -EIO },
258258
[I2400M_MS_BUSY] = { "busy", -EBUSY },
259259
[I2400M_MS_CORRUPTED_TLV] = { "corrupted TLV", -EILSEQ },
260-
[I2400M_MS_UNINITIALIZED] = { "not unitialized", -EILSEQ },
260+
[I2400M_MS_UNINITIALIZED] = { "uninitialized", -EILSEQ },
261261
[I2400M_MS_UNKNOWN_ERROR] = { "unknown error", -EIO },
262262
[I2400M_MS_PRODUCTION_ERROR] = { "production error", -EIO },
263263
[I2400M_MS_NO_RF] = { "no RF", -EIO },

0 commit comments

Comments
 (0)