diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-10-06 17:20:24 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-10-07 14:28:00 +0200 |
commit | 6db282c8a9edcbf84e699e45ec087baf07be2236 (patch) | |
tree | 8c2cf19998edf487c2ce19f011656e9dce21165c /sound | |
parent | Merge tag 'v5.9-rc5' into asoc-5.10 (diff) | |
download | linux-6db282c8a9edcbf84e699e45ec087baf07be2236.tar.xz linux-6db282c8a9edcbf84e699e45ec087baf07be2236.zip |
ASoC: mchp-spdifrx: fix spelling mistake "overrrun" -> "overrun"
There is a spelling mistake in a dev_warn message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
Link: https://lore.kernel.org/r/20201006152024.542418-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/atmel/mchp-spdifrx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/atmel/mchp-spdifrx.c b/sound/soc/atmel/mchp-spdifrx.c index 726e4951d9a5..e6ded6f8453f 100644 --- a/sound/soc/atmel/mchp-spdifrx.c +++ b/sound/soc/atmel/mchp-spdifrx.c @@ -338,7 +338,7 @@ static irqreturn_t mchp_spdif_interrupt(int irq, void *dev_id) } if (pending & SPDIFRX_IR_OVERRUN) { - dev_warn(dev->dev, "Overrrun detected\n"); + dev_warn(dev->dev, "Overrun detected\n"); ret = IRQ_HANDLED; } |