mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
serial: max310x: fix syntax error in IRQ error message
[ Upstream commit8ede8c6f47] Replace g with q. Helpful when grepping thru source code or logs for "request" keyword. Fixes:f65444187a("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>
This commit is contained in:
committed by
Sasha Levin
parent
59cfc931a8
commit
4b8c6b54b1
@@ -1461,7 +1461,7 @@ static int max310x_probe(struct device *dev, const struct max310x_devtype *devty
|
|||||||
if (!ret)
|
if (!ret)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
dev_err(dev, "Unable to reguest IRQ %i\n", irq);
|
dev_err(dev, "Unable to request IRQ %i\n", irq);
|
||||||
|
|
||||||
out_uart:
|
out_uart:
|
||||||
for (i = 0; i < devtype->nr; i++) {
|
for (i = 0; i < devtype->nr; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user