[PATCH] eth: fealnx: fix typo in comment

Denis Benato posted 1 patch 2 months, 2 weeks ago
drivers/net/ethernet/fealnx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] eth: fealnx: fix typo in comment
Posted by Denis Benato 2 months, 2 weeks ago
There is a typo in a comment containing "avilable":
replace it with "available".

Signed-off-by: Denis Benato <benato.denis96@gmail.com>
---
 drivers/net/ethernet/fealnx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/fealnx.c b/drivers/net/ethernet/fealnx.c
index 6ac8547ef9b8..bf72fe6ca187 100644
--- a/drivers/net/ethernet/fealnx.c
+++ b/drivers/net/ethernet/fealnx.c
@@ -196,7 +196,7 @@ enum intr_status_bits {
 	ERI = 0x00000080,	/* receive early int */
 	CNTOVF = 0x00000040,	/* counter overflow */
 	RBU = 0x00000020,	/* receive buffer unavailable */
-	TBU = 0x00000010,	/* transmit buffer unavilable */
+	TBU = 0x00000010,	/* transmit buffer unavailable */
 	TI = 0x00000008,	/* transmit interrupt */
 	RI = 0x00000004,	/* receive interrupt */
 	RxErr = 0x00000002,	/* receive error */
-- 
2.51.0
Re: [PATCH] eth: fealnx: fix typo in comment
Posted by Simon Horman 2 months, 2 weeks ago
On Sat, Oct 04, 2025 at 02:59:42PM +0200, Denis Benato wrote:
> There is a typo in a comment containing "avilable":
> replace it with "available".
> 
> Signed-off-by: Denis Benato <benato.denis96@gmail.com>

Thanks Denis,

I agree this is a good change, but could you also
fix the spelling of mutlicast in this file?

Please do consider tagging patches for Networking for their target tree.
In this case I assume net-next, as this doesn't seem to be a bugfix for net.

Also, net-next is currently closed for hte merge window.
And will reopen once v6.18-rc1 has been released, I expect on or after
the 13th October. So please post any patches for net-next after then.

See: https://docs.kernel.org/process/maintainer-netdev.html

-- 
pw-bot: changes-requested
Re: [PATCH] eth: fealnx: fix typo in comment
Posted by Denis Benato 2 months, 1 week ago
On 10/4/25 18:08, Simon Horman wrote:
> On Sat, Oct 04, 2025 at 02:59:42PM +0200, Denis Benato wrote:
>> There is a typo in a comment containing "avilable":
>> replace it with "available".
>>
>> Signed-off-by: Denis Benato <benato.denis96@gmail.com>
> Thanks Denis,
Hello Simon,
>
> I agree this is a good change, but could you also
> fix the spelling of mutlicast in this file?
>

Sure thing! I didn't noticed it, I was fixing another driver, so I

searched for that misspell and found this, so I simply quickly changed that

without looking or touching anything else.

> Please do consider tagging patches for Networking for their target tree.
> In this case I assume net-next, as this doesn't seem to be a bugfix for net.
>
> Also, net-next is currently closed for hte merge window.
> And will reopen once v6.18-rc1 has been released, I expect on or after
> the 13th October. So please post any patches for net-next after then.
>
> See: https://docs.kernel.org/process/maintainer-netdev.html
>
Thank you for the guidance! I am pretty new to all of this.