]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
usb: atm: Correct some typos
authorShen Lichuan <shenlichuan@vivo.com>
Thu, 26 Sep 2024 07:59:55 +0000 (15:59 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Oct 2024 13:08:58 +0000 (15:08 +0200)
Fixed some confusing typos that were currently identified with codespell,
the details are as follows:

drivers/usb/atm/ueagle-atm.c:811: endianes ==> endianness
drivers/usb/atm/ueagle-atm.c:1279: timming ==> timing
drivers/usb/atm/ueagle-atm.c:1975: preambule ==> preamble
drivers/usb/atm/usbatm.c:1161: alloced ==> allocated

Signed-off-by: Shen Lichuan <shenlichuan@vivo.com>
Acked-by: Stanislaw Gruszka <stf_xl@wp.pl>
Link: https://lore.kernel.org/r/20240926075955.10199-1-shenlichuan@vivo.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/atm/ueagle-atm.c
drivers/usb/atm/usbatm.c

index 16703815be0c482328cb45c72dabf457eedcf4e9..62bfdf142aa0a4d97a2fb50c20959955f32ac916 100644 (file)
@@ -808,7 +808,7 @@ static int check_dsp_e4(const u8 *dsp, int len)
                        if (l > len)
                                return 1;
 
-               /* zero is zero regardless endianes */
+               /* zero is zero regardless endianness */
                } while (blockidx->NotLastBlock);
        }
 
@@ -1276,7 +1276,7 @@ static void uea_set_bulk_timeout(struct uea_softc *sc, u32 dsrate)
            sc->stats.phy.dsrate == dsrate)
                return;
 
-       /* Original timming (1Mbit/s) from ADI (used in windows driver) */
+       /* Original timing (1Mbit/s) from ADI (used in windows driver) */
        timeout = (dsrate <= 1024*1024) ? 0 : 1;
        ret = uea_request(sc, UEA_SET_TIMEOUT, timeout, 0, NULL);
        uea_info(INS_TO_USBDEV(sc), "setting new timeout %d%s\n",
@@ -1972,7 +1972,7 @@ static void uea_dispatch_cmv_e1(struct uea_softc *sc, struct intr_pkt *intr)
        if (cmv->bDirection != E1_MODEMTOHOST)
                goto bad1;
 
-       /* FIXME : ADI930 reply wrong preambule (func = 2, sub = 2) to
+       /* FIXME : ADI930 reply wrong preamble (func = 2, sub = 2) to
         * the first MEMACCESS cmv. Ignore it...
         */
        if (cmv->bFunction != dsc->function) {
index 2da6615fbb6f4ea6f1661d8354b27a26393dba1f..d1e622bb140622fdf4815fa0620917d9326a0c45 100644 (file)
@@ -1158,7 +1158,7 @@ int usbatm_usb_probe(struct usb_interface *intf, const struct usb_device_id *id,
                if (i >= num_rcv_urbs)
                        list_add_tail(&urb->urb_list, &channel->list);
 
-               vdbg(&intf->dev, "%s: alloced buffer 0x%p buf size %u urb 0x%p",
+               vdbg(&intf->dev, "%s: allocated buffer 0x%p buf size %u urb 0x%p",
                     __func__, urb->transfer_buffer, urb->transfer_buffer_length, urb);
        }