mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-19 05:59:27 -05:00
Merge branch 'merge' into next
This commit is contained in:
@@ -469,7 +469,7 @@ static irqreturn_t pmz_interrupt(int irq, void *dev_id)
|
||||
tty = NULL;
|
||||
if (r3 & (CHAEXT | CHATxIP | CHARxIP)) {
|
||||
if (!ZS_IS_OPEN(uap_a)) {
|
||||
pmz_debug("ChanA interrupt while open !\n");
|
||||
pmz_debug("ChanA interrupt while not open !\n");
|
||||
goto skip_a;
|
||||
}
|
||||
write_zsreg(uap_a, R0, RES_H_IUS);
|
||||
@@ -493,8 +493,8 @@ static irqreturn_t pmz_interrupt(int irq, void *dev_id)
|
||||
spin_lock(&uap_b->port.lock);
|
||||
tty = NULL;
|
||||
if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) {
|
||||
if (!ZS_IS_OPEN(uap_a)) {
|
||||
pmz_debug("ChanB interrupt while open !\n");
|
||||
if (!ZS_IS_OPEN(uap_b)) {
|
||||
pmz_debug("ChanB interrupt while not open !\n");
|
||||
goto skip_b;
|
||||
}
|
||||
write_zsreg(uap_b, R0, RES_H_IUS);
|
||||
|
||||
Reference in New Issue
Block a user