[PATCH] serial: max310x: fix syntax error in IRQ error message

Hugo Villeneuve posted 1 patch 1 year, 11 months ago
drivers/tty/serial/max310x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] serial: max310x: fix syntax error in IRQ error message
Posted by Hugo Villeneuve 1 year, 11 months ago
From: Hugo Villeneuve <hvilleneuve@dimonoff.com>

Replace g with q.

Helpfull when grepping thru source code or logs for
"request" keyword.

Fixes: f65444187a66 ("serial: New serial driver MAX310X")
Cc: <stable@vger.kernel.org>
Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
---
 drivers/tty/serial/max310x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c
index f3a99daebdaa..3951876affc4 100644
--- a/drivers/tty/serial/max310x.c
+++ b/drivers/tty/serial/max310x.c
@@ -1428,7 +1428,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++) {

base-commit: 0c84bea0cabc4e2b98a3de88eeb4ff798931f056
-- 
2.39.2
Re: [PATCH] serial: max310x: fix syntax error in IRQ error message
Posted by Greg Kroah-Hartman 1 year, 11 months ago
On Tue, Jan 09, 2024 at 03:11:02PM -0500, Hugo Villeneuve wrote:
> From: Hugo Villeneuve <hvilleneuve@dimonoff.com>
> 
> Replace g with q.
> 
> Helpfull when grepping thru source code or logs for
> "request" keyword.
> 
> Fixes: f65444187a66 ("serial: New serial driver MAX310X")
> Cc: <stable@vger.kernel.org>

I really doubt that changing a spelling issue is stable patch material,
right? :)

I'll queue this up after 6.8-rc1 is out.

thanks,

greg k-h
Re: [PATCH] serial: max310x: fix syntax error in IRQ error message
Posted by Hugo Villeneuve 1 year, 11 months ago
On Wed, 10 Jan 2024 08:59:36 +0100
Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote:

> On Tue, Jan 09, 2024 at 03:11:02PM -0500, Hugo Villeneuve wrote:
> > From: Hugo Villeneuve <hvilleneuve@dimonoff.com>
> > 
> > Replace g with q.
> > 
> > Helpfull when grepping thru source code or logs for
> > "request" keyword.
> > 
> > Fixes: f65444187a66 ("serial: New serial driver MAX310X")
> > Cc: <stable@vger.kernel.org>
> 
> I really doubt that changing a spelling issue is stable patch material,
> right? :)
> 
> I'll queue this up after 6.8-rc1 is out.

Ok, no problem.

I am about to submit a new serie of some cleanups/improvements for the
max310x, and if you want I can integrate it into this new serie.

Thank you,
Hugo Villeneuve