diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-06-23 12:56:27 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2016-06-23 13:43:59 -0400 |
commit | 3c45b026db465952ca868fade5ca2cc831fbcdcc (patch) | |
tree | 9aaddaa94c4cd1ed0e55124792eea10a3caba74b | |
parent | 660c5a6cd58458d0d12bba940919a51ec497308d (diff) |
Input: ams_delta_serio - fix spelling mistake: "paritiy" -> "parity"
trivial fix to spelling mistake in dev_warn message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/serio/ams_delta_serio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/serio/ams_delta_serio.c b/drivers/input/serio/ams_delta_serio.c index 45887e31242a..3df501c3421b 100644 --- a/drivers/input/serio/ams_delta_serio.c +++ b/drivers/input/serio/ams_delta_serio.c | |||
@@ -56,7 +56,7 @@ static int check_data(int data) | |||
56 | /* it should be odd */ | 56 | /* it should be odd */ |
57 | if (!(parity & 0x01)) { | 57 | if (!(parity & 0x01)) { |
58 | dev_warn(&ams_delta_serio->dev, | 58 | dev_warn(&ams_delta_serio->dev, |
59 | "paritiy check failed, data=0x%X parity=0x%X\n", | 59 | "parity check failed, data=0x%X parity=0x%X\n", |
60 | data, parity); | 60 | data, parity); |
61 | return SERIO_PARITY; | 61 | return SERIO_PARITY; |
62 | } | 62 | } |