]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: dlink: fix several spelling mistakes in comments
authorYeounsu Moon <yyyynoom@gmail.com>
Sun, 30 Nov 2025 22:06:53 +0000 (07:06 +0900)
committerJakub Kicinski <kuba@kernel.org>
Mon, 1 Dec 2025 19:58:55 +0000 (11:58 -0800)
This patch fixes multiple spelling mistakes in dl2k driver comments:

- "deivices" -> "devices"
- "Ttransmit" -> "Transmit"
- "catastronphic" -> "catastrophic"
- "Extened" -> "Extended"

Also fix incorrect unit description: `rx_timeout` uses 640ns increments,
not 64ns.
- "64ns" -> "640ns"

These are comment-only changes and do not affect runtime behavior.

Signed-off-by: Yeounsu Moon <yyyynoom@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://patch.msgid.link/20251130220652.5425-2-yyyynoom@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/dlink/dl2k.c
drivers/net/ethernet/dlink/dl2k.h

index 6e4f171425192bf5856460b7312b0a2fc204f6e6..846d58c769eaf09df35d68122fc912ea2e295d9e 100644 (file)
@@ -41,7 +41,7 @@ module_param(tx_flow, int, 0);
 module_param(rx_flow, int, 0);
 module_param(copy_thresh, int, 0);
 module_param(rx_coalesce, int, 0);     /* Rx frame count each interrupt */
-module_param(rx_timeout, int, 0);      /* Rx DMA wait time in 64ns increments */
+module_param(rx_timeout, int, 0);  /* Rx DMA wait time in 640ns increments */
 module_param(tx_coalesce, int, 0); /* HW xmit count each TxDMAComplete */
 
 
@@ -262,7 +262,7 @@ rio_probe1 (struct pci_dev *pdev, const struct pci_device_id *ent)
        np->link_status = 0;
        /* Set media and reset PHY */
        if (np->phy_media) {
-               /* default Auto-Negotiation for fiber deivices */
+               /* default Auto-Negotiation for fiber devices */
                if (np->an_enable == 2) {
                        np->an_enable = 1;
                }
@@ -887,7 +887,7 @@ tx_error (struct net_device *dev, int tx_status)
        frame_id = (tx_status & 0xffff0000);
        printk (KERN_ERR "%s: Transmit error, TxStatus %4.4x, FrameId %d.\n",
                dev->name, tx_status, frame_id);
-       /* Ttransmit Underrun */
+       /* Transmit Underrun */
        if (tx_status & 0x10) {
                dev->stats.tx_fifo_errors++;
                dw16(TxStartThresh, dr16(TxStartThresh) + 0x10);
@@ -1083,7 +1083,7 @@ rio_error (struct net_device *dev, int int_status)
                get_stats (dev);
        }
 
-       /* PCI Error, a catastronphic error related to the bus interface
+       /* PCI Error, a catastrophic error related to the bus interface
           occurs, set GlobalReset and HostReset to reset. */
        if (int_status & HostError) {
                printk (KERN_ERR "%s: HostError! IntStatus %4.4x.\n",
index 4788cc94639d1d7a40356138bd5414299476f73d..9ebf7a6db93e4fc488215c1e99be98a9a00b1ac0 100644 (file)
@@ -270,7 +270,7 @@ enum _pcs_reg {
        PCS_ESR = 15,
 };
 
-/* IEEE Extened Status Register */
+/* IEEE Extended Status Register */
 enum _mii_esr {
        MII_ESR_1000BX_FD = 0x8000,
        MII_ESR_1000BX_HD = 0x4000,