diff options
Diffstat (limited to 'drivers/tty/serial/pmac_zilog.c')
| -rw-r--r-- | drivers/tty/serial/pmac_zilog.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/tty/serial/pmac_zilog.c b/drivers/tty/serial/pmac_zilog.c index 08ebe901bb5..654755a990d 100644 --- a/drivers/tty/serial/pmac_zilog.c +++ b/drivers/tty/serial/pmac_zilog.c @@ -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);  |