[PATCH net-next v2] eth: fealnx: fix typo in comments

Denis Benato posted 1 patch 2 months ago
drivers/net/ethernet/fealnx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH net-next v2] eth: fealnx: fix typo in comments
Posted by Denis Benato 2 months ago
There are a few typos in comments:
 - replace "avilable" with "available"
 - replace "mutlicast" with "multicast"

Signed-off-by: Denis Benato <benato.denis96@gmail.com>
---
v2:
  - also fix "mutlicast"
  - tag for net-next
---
 drivers/net/ethernet/fealnx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/fealnx.c b/drivers/net/ethernet/fealnx.c
index 6ac8547ef9b8..3c9961806f75 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 */
@@ -215,7 +215,7 @@ enum rx_mode_bits {
 	CR_W_RXMODEMASK	= 0x000000e0,
 	CR_W_PROM	= 0x00000080,	/* promiscuous mode */
 	CR_W_AB		= 0x00000040,	/* accept broadcast */
-	CR_W_AM		= 0x00000020,	/* accept mutlicast */
+	CR_W_AM		= 0x00000020,	/* accept multicast */
 	CR_W_ARP	= 0x00000008,	/* receive runt pkt */
 	CR_W_ALP	= 0x00000004,	/* receive long pkt */
 	CR_W_SEP	= 0x00000002,	/* receive error pkt */
-- 
2.51.0
Re: [PATCH net-next v2] eth: fealnx: fix typo in comments
Posted by Simon Horman 2 months ago
On Mon, Oct 13, 2025 at 08:36:32PM +0200, Denis Benato wrote:
> There are a few typos in comments:
>  - replace "avilable" with "available"
>  - replace "mutlicast" with "multicast"
> 
> Signed-off-by: Denis Benato <benato.denis96@gmail.com>
> ---
> v2:
>   - also fix "mutlicast"
>   - tag for net-next

Thanks for the update.

Reviewed-by: Simon Horman <horms@kernel.org>