summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-01-23 00:55:47 +0100
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-03-02 09:50:29 +0100
commitd1cb98caac66f9071b88ff97ba4af83e6511b970 (patch)
treeab7f0e547274ab61a33d6c48373c6edb01f3bfa4
parentbd59f412d17f81a41e35c884d3caacf34c9e4940 (diff)
downloadlinux-0-day-d1cb98caac66f9071b88ff97ba4af83e6511b970.tar.gz
linux-0-day-d1cb98caac66f9071b88ff97ba4af83e6511b970.tar.xz
media: rc: fix spelling mistake "to" -> "too"
There is a spelling mistake in a dev_dbg message. Fix it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
-rw-r--r--drivers/media/rc/ir-xmp-decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/ir-xmp-decoder.c b/drivers/media/rc/ir-xmp-decoder.c
index 74a1d30fae6ec..4c3d038762000 100644
--- a/drivers/media/rc/ir-xmp-decoder.c
+++ b/drivers/media/rc/ir-xmp-decoder.c
@@ -166,7 +166,7 @@ static int ir_xmp_decode(struct rc_dev *dev, struct ir_raw_event ev)
} else if (geq_margin(ev.duration, XMP_NIBBLE_PREFIX, XMP_UNIT)) {
/* store nibble raw data, decode after trailer */
if (data->count == 16) {
- dev_dbg(&dev->dev, "to many pulses (%d) ignoring: %u\n",
+ dev_dbg(&dev->dev, "too many pulses (%d) ignoring: %u\n",
data->count, ev.duration);
data->state = STATE_INACTIVE;
return -EINVAL;