mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 10:06:42 +07:00
USB: serial: cypress_m8: remove set but not used variable 'iflag'
Fixes gcc '-Wunused-but-set-variable' warning: drivers/usb/serial/cypress_m8.c: In function 'cypress_set_termios': drivers/usb/serial/cypress_m8.c:866:18: warning: variable 'iflag' set but not used [-Wunused-but-set-variable] Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Johan Hovold <johan@kernel.org>
This commit is contained in:
parent
56445eef55
commit
17c42e3499
@ -863,7 +863,7 @@ static void cypress_set_termios(struct tty_struct *tty,
|
||||
struct cypress_private *priv = usb_get_serial_port_data(port);
|
||||
struct device *dev = &port->dev;
|
||||
int data_bits, stop_bits, parity_type, parity_enable;
|
||||
unsigned cflag, iflag;
|
||||
unsigned int cflag;
|
||||
unsigned long flags;
|
||||
__u8 oldlines;
|
||||
int linechange = 0;
|
||||
@ -899,7 +899,6 @@ static void cypress_set_termios(struct tty_struct *tty,
|
||||
tty->termios.c_cflag &= ~(CMSPAR|CRTSCTS);
|
||||
|
||||
cflag = tty->termios.c_cflag;
|
||||
iflag = tty->termios.c_iflag;
|
||||
|
||||
/* check if there are new settings */
|
||||
if (old_termios) {
|
||||
|
Loading…
Reference in New Issue
Block a user