]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
USB: serial: kobil_sct: drop unnecessary initialisations
authorJohan Hovold <johan@kernel.org>
Wed, 22 Oct 2025 15:26:40 +0000 (17:26 +0200)
committerJohan Hovold <johan@kernel.org>
Mon, 27 Oct 2025 08:22:27 +0000 (09:22 +0100)
Drop unnecessary initialisation of variables that are always assigned
before being used.

Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
drivers/usb/serial/kobil_sct.c

index cad3cfc63ce7b14e7e4df5835ecfe3d28945307e..3a1343d88386fc666bafaf9fcb80b216747a8f7d 100644 (file)
@@ -178,10 +178,10 @@ static void kobil_init_termios(struct tty_struct *tty)
 static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port)
 {
        struct device *dev = &port->dev;
-       int result = 0;
        struct kobil_private *priv;
        unsigned char *transfer_buffer;
        int transfer_buffer_length = 8;
+       int result;
 
        priv = usb_get_serial_port_data(port);
 
@@ -272,10 +272,8 @@ static void kobil_write_int_callback(struct urb *urb)
 static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
                        const unsigned char *buf, int count)
 {
-       int length = 0;
-       int result = 0;
-       int todo = 0;
        struct kobil_private *priv;
+       int length, todo, result;
 
        if (count == 0) {
                dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);