USB: serial: io_edgeport: fix spelling mistakes
authorZhang Jiaming <jiaming@nfschina.com>
Wed, 29 Jun 2022 06:41:53 +0000 (14:41 +0800)
committerJohan Hovold <johan@kernel.org>
Wed, 13 Jul 2022 06:28:54 +0000 (08:28 +0200)
Change 'paramater' to 'parameter'.
Change 'timedout' to 'timeout'.

Signed-off-by: Zhang Jiaming <jiaming@nfschina.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
drivers/usb/serial/io_edgeport.c

index bdee78c..ffa6225 100644 (file)
@@ -220,7 +220,7 @@ struct edgeport_serial {
        __u8                    rxHeader3;                      /* receive header byte 3 */
        __u8                    rxPort;                         /* the port that we are currently receiving data for */
        __u8                    rxStatusCode;                   /* the receive status code */
-       __u8                    rxStatusParam;                  /* the receive status paramater */
+       __u8                    rxStatusParam;                  /* the receive status parameter */
        __s16                   rxBytesRemaining;               /* the number of port bytes left to read */
        struct usb_serial       *serial;                        /* loop back to the owner of this object */
 };
@@ -901,7 +901,7 @@ static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
 
        if (!edge_port->open) {
                /* open timed out */
-               dev_dbg(dev, "%s - open timedout\n", __func__);
+               dev_dbg(dev, "%s - open timeout\n", __func__);
                edge_port->openPending = false;
                return -ENODEV;
        }