serial: max310x: fix syntax error in IRQ error message

Message ID 20240109201102.299302-1-hugo@hugovil.com
State New
Headers
Series serial: max310x: fix syntax error in IRQ error message |

Commit Message

Hugo Villeneuve Jan. 9, 2024, 8:11 p.m. UTC
  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(-)


base-commit: 0c84bea0cabc4e2b98a3de88eeb4ff798931f056
  

Comments

Greg KH Jan. 10, 2024, 7:59 a.m. UTC | #1
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
  
Hugo Villeneuve Jan. 10, 2024, 2:58 p.m. UTC | #2
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
  

Patch

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++) {