mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
tty: icom: bit and/or confusion?
Previously, if any bit other than CMD_SND_BREAK was set, CMD_SND_BREAK was not unset. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
60479ed594
commit
1607acaec3
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user