tty: n_gsm: fix redundant assignment of gsm->encoding
authorDaniel Starke <daniel.starke@siemens.com>
Thu, 20 Apr 2023 08:50:09 +0000 (10:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 20 Apr 2023 11:27:10 +0000 (13:27 +0200)
commit254d5a59464eea1324353d84c0f614c413e8e54f
tree30b9c8b222fc11163f3dd0d3866084638bd994c9
parent039535ecf18e8dc93fe4b294fdf175a31bd023b2
tty: n_gsm: fix redundant assignment of gsm->encoding

The function gsmld_open() contains a redundant assignment of gsm->encoding.
The same value of GSM_ADV_OPT is already assigned to it during the
initialization of the struct in gsm_alloc_mux() a few lines earlier.

Fix this by removing the redundant second assignment of gsm->encoding in
gsmld_open().

Fixes: e1eaea46bb40 ("tty: n_gsm line discipline")
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Daniel Starke <daniel.starke@siemens.com>
Link: https://lore.kernel.org/r/20230420085017.7314-1-daniel.starke@siemens.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/n_gsm.c