2021-06-01 10:25:39

by Colin King

[permalink] [raw]
Subject: [PATCH][next] char: xillybus: Fix spelling mistake "overflew" -> "overflowed"

From: Colin Ian King <[email protected]>

There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <[email protected]>
---
drivers/char/xillybus/xillyusb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/xillybus/xillyusb.c b/drivers/char/xillybus/xillyusb.c
index 1e15706af749..2ec8eca3eeee 100644
--- a/drivers/char/xillybus/xillyusb.c
+++ b/drivers/char/xillybus/xillyusb.c
@@ -1000,7 +1000,7 @@ static int process_bulk_in(struct xillybuffer *xb)
return -EIO; /* We got really unexpected data */

if (bytes != fifo_write(fifo, p, bytes, xilly_memcpy)) {
- dev_err(dev, "Misbehaving FPGA overflew an upstream FIFO!\n");
+ dev_err(dev, "Misbehaving FPGA overflowed an upstream FIFO!\n");
return -EIO;
}

--
2.31.1


2021-06-01 16:37:23

by Eli Billauer

[permalink] [raw]
Subject: Re: [PATCH][next] char: xillybus: Fix spelling mistake "overflew" -> "overflowed"

On 01/06/21 13:22, Colin King wrote:
> There is a spelling mistake in a dev_err message. Fix it.
>
>
This is actually a grammar mistake: Overflew is the past of overfly, not
overflow.

I stand corrected nevertheless. Thanks.

Eli

Acked-by: Eli Billauer <[email protected]>