diff options
author | Johan Hovold <johan@kernel.org> | 2018-07-16 13:51:55 +0200 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2018-07-16 14:11:27 +0200 |
commit | b8f6515445c170016014154f2e84cc863b4cc7a4 (patch) | |
tree | 31efd36481cca154d0f97a82d0d5a43d7ae52f8d /drivers/usb/serial | |
parent | USB: serial: mos7720: remove redundant variables iflag, mask and serial (diff) | |
download | linux-b8f6515445c170016014154f2e84cc863b4cc7a4.tar.xz linux-b8f6515445c170016014154f2e84cc863b4cc7a4.zip |
USB: serial: iuu_phoenix: drop unused driver-data baud rate
Drop unused driver-data baud rate.
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/iuu_phoenix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c index 2fb71303ec3a..87c8dd064205 100644 --- a/drivers/usb/serial/iuu_phoenix.c +++ b/drivers/usb/serial/iuu_phoenix.c @@ -58,7 +58,6 @@ struct iuu_private { u8 *buf; /* used for initialize speed */ u8 len; int vcc; /* vcc (either 3 or 5 V) */ - u32 baud; u32 boost; u32 clk; }; @@ -991,7 +990,6 @@ static int iuu_open(struct tty_struct *tty, struct usb_serial_port *port) if (boost < 100) boost = 100; priv->boost = boost; - priv->baud = baud; switch (clockmode) { case 2: /* 3.680 Mhz */ priv->clk = IUU_CLK_3680000; |