Commit c3301a5c authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds

epca: fix test_bit parameters

Switch from ASYNC_* to ASYNCB_*, because test_bit expects
bit number, not mask.
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a391ad0f
...@@ -1518,7 +1518,7 @@ static void doevent(int crd) ...@@ -1518,7 +1518,7 @@ static void doevent(int crd)
if (event & MODEMCHG_IND) { if (event & MODEMCHG_IND) {
/* A modem signal change has been indicated */ /* A modem signal change has been indicated */
ch->imodem = mstat; ch->imodem = mstat;
if (test_bit(ASYNC_CHECK_CD, &ch->port.flags)) { if (test_bit(ASYNCB_CHECK_CD, &ch->port.flags)) {
/* We are now receiving dcd */ /* We are now receiving dcd */
if (mstat & ch->dcd) if (mstat & ch->dcd)
wake_up_interruptible(&ch->port.open_wait); wake_up_interruptible(&ch->port.open_wait);
...@@ -1765,9 +1765,9 @@ static void epcaparam(struct tty_struct *tty, struct channel *ch) ...@@ -1765,9 +1765,9 @@ static void epcaparam(struct tty_struct *tty, struct channel *ch)
* that the driver will wait on carrier detect. * that the driver will wait on carrier detect.
*/ */
if (ts->c_cflag & CLOCAL) if (ts->c_cflag & CLOCAL)
clear_bit(ASYNC_CHECK_CD, &ch->port.flags); clear_bit(ASYNCB_CHECK_CD, &ch->port.flags);
else else
set_bit(ASYNC_CHECK_CD, &ch->port.flags); set_bit(ASYNCB_CHECK_CD, &ch->port.flags);
mval = ch->m_dtr | ch->m_rts; mval = ch->m_dtr | ch->m_rts;
} /* End CBAUD not detected */ } /* End CBAUD not detected */
iflag = termios2digi_i(ch, ts->c_iflag); iflag = termios2digi_i(ch, ts->c_iflag);
...@@ -2244,7 +2244,8 @@ static void do_softint(struct work_struct *work) ...@@ -2244,7 +2244,8 @@ static void do_softint(struct work_struct *work)
if (test_and_clear_bit(EPCA_EVENT_HANGUP, &ch->event)) { if (test_and_clear_bit(EPCA_EVENT_HANGUP, &ch->event)) {
tty_hangup(tty); tty_hangup(tty);
wake_up_interruptible(&ch->port.open_wait); wake_up_interruptible(&ch->port.open_wait);
clear_bit(ASYNC_NORMAL_ACTIVE, &ch->port.flags); clear_bit(ASYNCB_NORMAL_ACTIVE,
&ch->port.flags);
} }
} }
tty_kref_put(tty); tty_kref_put(tty);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment