diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-11-20 20:40:15 +0300 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2017-11-27 15:51:07 +0300 |
commit | 5f0337b549e97fda07ccf48b9eebcee983c255bf (patch) | |
tree | 8367663014adc9e7bb9293da51512cd297684879 /drivers/usb/serial/iuu_phoenix.c | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) | |
download | linux-5f0337b549e97fda07ccf48b9eebcee983c255bf.tar.xz |
USB: serial: iuu_phoenix: remove redundant assignment of DIV to itself
The assignment of DIV to itself is redundant and can be removed.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/iuu_phoenix.c')
-rw-r--r-- | drivers/usb/serial/iuu_phoenix.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c index 397a8012ffa3..62c91e360baf 100644 --- a/drivers/usb/serial/iuu_phoenix.c +++ b/drivers/usb/serial/iuu_phoenix.c @@ -472,7 +472,6 @@ static int iuu_clk(struct usb_serial_port *port, int dwFrq) } } P2 = ((P - PO) / 2) - 4; - DIV = DIV; PUMP = 0x04; PBmsb = (P2 >> 8 & 0x03); PBlsb = P2 & 0xFF; |