summaryrefslogtreecommitdiffstats
path: root/sys/dev/uart/uart_dev_sab82532.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/uart/uart_dev_sab82532.c')
-rw-r--r--sys/dev/uart/uart_dev_sab82532.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/uart/uart_dev_sab82532.c b/sys/dev/uart/uart_dev_sab82532.c
index 112dca4..582bae8 100644
--- a/sys/dev/uart/uart_dev_sab82532.c
+++ b/sys/dev/uart/uart_dev_sab82532.c
@@ -546,15 +546,15 @@ sab82532_bus_ipend(struct uart_softc *sc)
ipend = 0;
if (isr1 & SAB_ISR1_BRKT)
- ipend |= UART_IPEND_BREAK;
+ ipend |= SER_INT_BREAK;
if (isr0 & SAB_ISR0_RFO)
- ipend |= UART_IPEND_OVERRUN;
+ ipend |= SER_INT_OVERRUN;
if (isr0 & (SAB_ISR0_TCD|SAB_ISR0_RPF))
- ipend |= UART_IPEND_RXREADY;
+ ipend |= SER_INT_RXREADY;
if ((isr0 & SAB_ISR0_CDSC) || (isr1 & SAB_ISR1_CSC))
- ipend |= UART_IPEND_SIGCHG;
+ ipend |= SER_INT_SIGCHG;
if (isr1 & SAB_ISR1_ALLS)
- ipend |= UART_IPEND_TXIDLE;
+ ipend |= SER_INT_TXIDLE;
return (ipend);
}
OpenPOWER on IntegriCloud