tty: serial: jsm: jsm_cls: Remove unused variable 'discard'
authorLee Jones <lee.jones@linaro.org>
Wed, 4 Nov 2020 19:35:24 +0000 (19:35 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Nov 2020 09:49:27 +0000 (10:49 +0100)
Fixes the following W=1 kernel build warning(s):

 drivers/tty/serial/jsm/jsm_cls.c: In function ‘cls_copy_data_from_uart_to_queue’:
 drivers/tty/serial/jsm/jsm_cls.c:400:7: warning: variable ‘discard’ set but not used [-Wunused-but-set-variable]

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Jiri Slaby <jirislaby@kernel.org>
Cc: linux-serial@vger.kernel.org
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20201104193549.4026187-12-lee.jones@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/jsm/jsm_cls.c

index c061a7b..b507a2c 100644 (file)
@@ -397,10 +397,8 @@ static void cls_copy_data_from_uart_to_queue(struct jsm_channel *ch)
                 * which in this case is the break signal.
                 */
                if (linestatus & error_mask)  {
-                       u8 discard;
-
                        linestatus = 0;
-                       discard = readb(&ch->ch_cls_uart->txrx);
+                       readb(&ch->ch_cls_uart->txrx);
                        continue;
                }