From: Colin Ian King Date: Mon, 20 Nov 2017 17:40:15 +0000 (+0000) Subject: USB: serial: iuu_phoenix: remove redundant assignment of DIV to itself X-Git-Tag: v4.16-rc1~114^2~27^2~10 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=5f0337b549e97fda07ccf48b9eebcee983c255bf;p=linux.git 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 Signed-off-by: Johan Hovold --- 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;