summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Villeneuve <hvilleneuve@dimonoff.com>2024-01-18 10:22:01 -0500
committerSasha Levin <sashal@kernel.org>2024-03-26 18:20:05 -0400
commit2ab4e1f70c238ab3c6e692f3109978a9595cbbf6 (patch)
treee31815a862bd0bac15e38a0bd93e53427406e827
parent6d99e673264dd344523baffe3143383dfee83bb0 (diff)
downloadlinux-stable-2ab4e1f70c238ab3c6e692f3109978a9595cbbf6.tar.gz
linux-stable-2ab4e1f70c238ab3c6e692f3109978a9595cbbf6.tar.bz2
linux-stable-2ab4e1f70c238ab3c6e692f3109978a9595cbbf6.zip
serial: max310x: fix syntax error in IRQ error message
[ Upstream commit 8ede8c6f474255b2213cccd7997b993272a8e2f9 ] Replace g with q. Helpful when grepping thru source code or logs for "request" keyword. Fixes: f65444187a66 ("serial: New serial driver MAX310X") Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com> Link: https://lore.kernel.org/r/20240118152213.2644269-6-hugo@hugovil.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--drivers/tty/serial/max310x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c
index 3865c7f6dba8..4814aa310dcc 100644
--- a/drivers/tty/serial/max310x.c
+++ b/drivers/tty/serial/max310x.c
@@ -1461,7 +1461,7 @@ static int max310x_probe(struct device *dev, const struct max310x_devtype *devty
if (!ret)
return 0;
- dev_err(dev, "Unable to reguest IRQ %i\n", irq);
+ dev_err(dev, "Unable to request IRQ %i\n", irq);
out_uart:
for (i = 0; i < devtype->nr; i++) {