tty: icom: bit and/or confusion?
authorRoel Kluin <[email protected]>
Fri, 14 Aug 2009 12:02:34 +0000 (14:02 +0200)
committerLive-CD User <[email protected]>
Sat, 19 Sep 2009 20:13:11 +0000 (13:13 -0700)
Previously, if any bit other than CMD_SND_BREAK was set, CMD_SND_BREAK
was not unset.

Signed-off-by: Roel Kluin <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/serial/icom.c

index cd1b6a45bb8241b3cbdadc0f03021dc634adace4..060f4e3d54c532f7d210996c44dc3da374fac553 100644 (file)
@@ -617,7 +617,7 @@ static void shutdown(struct icom_port *icom_port)
         * disable break condition
         */
        cmdReg = readb(&icom_port->dram->CmdReg);
-       if ((cmdReg | CMD_SND_BREAK) == CMD_SND_BREAK) {
+       if (cmdReg & CMD_SND_BREAK) {
                writeb(cmdReg & ~CMD_SND_BREAK, &icom_port->dram->CmdReg);
        }
 }