tty: n_gsm: remove unneeded initialization of ret in gsm_dlci_config
authorDaniel Starke <daniel.starke@siemens.com>
Thu, 17 Aug 2023 09:32:25 +0000 (11:32 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Aug 2023 13:21:24 +0000 (15:21 +0200)
The variable 'ret' is not used before assignment from gsm_activate_mux().
Still it gets initialized to zero at declaration.

Fix this as remarked in the link below by moving the declaration to the
first assignment.

Link: https://lore.kernel.org/all/b42bc4d1-cc9d-d115-c981-aaa053bdc59f@kernel.org/
Signed-off-by: Daniel Starke <daniel.starke@siemens.com>
Link: https://lore.kernel.org/r/20230817093231.2317-3-daniel.starke@siemens.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/n_gsm.c

index 27da795ca348add13392b0ff7a0fde24d62eb0d2..a4df0a20f212679395aff2e089b2498bf168d6e6 100644 (file)
@@ -3280,7 +3280,6 @@ static void gsm_copy_config_values(struct gsm_mux *gsm,
 
 static int gsm_config(struct gsm_mux *gsm, struct gsm_config *c)
 {
-       int ret = 0;
        int need_close = 0;
        int need_restart = 0;
 
@@ -3359,7 +3358,7 @@ static int gsm_config(struct gsm_mux *gsm, struct gsm_config *c)
         * and removing from the mux array
         */
        if (gsm->dead) {
-               ret = gsm_activate_mux(gsm);
+               int ret = gsm_activate_mux(gsm);
                if (ret)
                        return ret;
                if (gsm->initiator)