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)
commite1c90bbb5f5178967d5d3c0917de847e88ebe398
tree974162a308311290a002d010bf63b5ad920f4f25
parent901de5ac0ea92c63c4cd7be60f9ccbbacd623a3c
tty: n_gsm: remove unneeded initialization of ret in gsm_dlci_config

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