net: amd: Correct spelling errors
authorGuofeng Yue <yueguofeng@hisilicon.com>
Wed, 7 Sep 2022 06:28:11 +0000 (14:28 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 16 Sep 2022 09:27:47 +0000 (10:27 +0100)
Find some spelling errors:

interupts --> interrupts
lenth --> length
stoped --> stopped
contoller --> controller

Signed-off-by: Guofeng Yue <yueguofeng@hisilicon.com>
Signed-off-by: Haoyue Xu <xuhaoyue1@hisilicon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amd/amd8111e.c
drivers/net/ethernet/amd/amd8111e.h

index aaa527d..7b4d9bb 100644 (file)
@@ -43,7 +43,7 @@ Revision History:
        3.0.4 12/09/2003
         1. Added set_mac_address routine for bonding driver support.
         2. Tested the driver for bonding support
-        3. Bug fix: Fixed mismach in actual receive buffer lenth and lenth
+        3. Bug fix: Fixed mismach in actual receive buffer length and length
            indicated to the h/w.
         4. Modified amd8111e_rx() routine to receive all the received packets
            in the first interrupt.
@@ -1109,7 +1109,7 @@ static irqreturn_t amd8111e_interrupt(int irq, void *dev_id)
        /* Check if Receive Interrupt has occurred. */
        if (intr0 & RINT0) {
                if (napi_schedule_prep(&lp->napi)) {
-                       /* Disable receive interupts */
+                       /* Disable receive interrupts */
                        writel(RINTEN0, mmio + INTEN0);
                        /* Schedule a polling routine */
                        __napi_schedule(&lp->napi);
@@ -1554,7 +1554,7 @@ static int amd8111e_enable_magicpkt(struct amd8111e_priv *lp)
 static int amd8111e_enable_link_change(struct amd8111e_priv *lp)
 {
 
-       /* Adapter is already stoped/suspended/interrupt-disabled */
+       /* Adapter is already stopped/suspended/interrupt-disabled */
        writel(VAL0 | LCMODE_SW, lp->mmio + CMD7);
 
        /* To eliminate PCI posting bug */
index 37da79d..9d570ad 100644 (file)
@@ -600,7 +600,7 @@ typedef enum {
 #define CSTATE  1
 #define SSTATE  2
 
-/* Assume contoller gets data 10 times the maximum processing time */
+/* Assume controller gets data 10 times the maximum processing time */
 #define  REPEAT_CNT                    10
 
 /* amd8111e descriptor flag definitions */