diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-04-18 12:35:28 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-04-23 10:57:06 +0200 |
commit | 4405898da936a710d200b2f826ca0f2e68c59f83 (patch) | |
tree | 76ed723a7b074ee2fcff0c7a5a1e178b12985604 /drivers/tty/nozomi.c | |
parent | 13eac05b0581e6f9f5aec93a8ab64c83d7c311bf (diff) | |
download | op-kernel-dev-4405898da936a710d200b2f826ca0f2e68c59f83.zip op-kernel-dev-4405898da936a710d200b2f826ca0f2e68c59f83.tar.gz |
tty: nozomi: fix spelling mistake in macro NOZOMI_STATE_UKNOWN
Rename NOZOMI_STATE_UKNOWN to NOZOMI_STATE_UNKNOWN (add missing N)
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/nozomi.c')
-rw-r--r-- | drivers/tty/nozomi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/nozomi.c b/drivers/tty/nozomi.c index b57b350..bf05946 100644 --- a/drivers/tty/nozomi.c +++ b/drivers/tty/nozomi.c @@ -155,7 +155,7 @@ enum card_type { /* Initialization states a card can be in */ enum card_state { - NOZOMI_STATE_UKNOWN = 0, + NOZOMI_STATE_UNKNOWN = 0, NOZOMI_STATE_ENABLED = 1, /* pci device enabled */ NOZOMI_STATE_ALLOCATED = 2, /* config setup done */ NOZOMI_STATE_READY = 3, /* flowcontrols received */ |