[PATCH] net: sxgbe: fix typo in comment

Jinseok Kim posted 1 patch 3 weeks, 6 days ago
drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] net: sxgbe: fix typo in comment
Posted by Jinseok Kim 3 weeks, 6 days ago
Fix a misspelling in the sxgbe_mtl_init() function comment.
"Algorith" should be spelled as "Algorithm".

Signed-off-by: Jinseok Kim <always.starving0@gmail.com>
---
 drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.c b/drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.c
index 298a7402e39c..66e6de64626c 100644
--- a/drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.c
+++ b/drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.c
@@ -25,7 +25,7 @@ static void sxgbe_mtl_init(void __iomem *ioaddr, unsigned int etsalg,
 	reg_val = readl(ioaddr + SXGBE_MTL_OP_MODE_REG);
 	reg_val &= ETS_RST;

-	/* ETS Algorith */
+	/* ETS Algorithm */
 	switch (etsalg & SXGBE_MTL_OPMODE_ESTMASK) {
 	case ETS_WRR:
 		reg_val &= ETS_WRR;
--
2.43.0
Re: [PATCH] net: sxgbe: fix typo in comment
Posted by Moon Yeounsu 3 weeks, 5 days ago
On Mon, Jan 12, 2026 at 1:42 PM Jinseok Kim <always.starving0@gmail.com> wrote:
>
> Fix a misspelling in the sxgbe_mtl_init() function comment.
> "Algorith" should be spelled as "Algorithm".
>
> Signed-off-by: Jinseok Kim <always.starving0@gmail.com>

Please include the target tree prefix in the patch subject line (e.g.
net: or net-next:),
as described here:
https://docs.kernel.org/process/maintainer-netdev.html#indicating-target-tree

    Yeounsu Moon