]> xenbits.xensource.com Git - people/aperard/linux.git/commitdiff
serial: max310x: fix syntax error in IRQ error message
authorHugo Villeneuve <hvilleneuve@dimonoff.com>
Thu, 18 Jan 2024 15:22:01 +0000 (10:22 -0500)
committerSasha Levin <sashal@kernel.org>
Tue, 26 Mar 2024 22:20:57 +0000 (18:20 -0400)
[ 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>
drivers/tty/serial/max310x.c

index 163a89f84c9c2b77d51698ae7487c670b14ffa39..444f89eb2d4b70f3feb3132c1de8f76af5dfd48a 100644 (file)
@@ -1459,7 +1459,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++) {