R_STS              86 drivers/tty/serial/arc_uart.c #define UART_CLR_STATUS(uart, val) UART_REG_CLR(uart, R_STS, val)
R_STS              87 drivers/tty/serial/arc_uart.c #define UART_GET_STATUS(uart)      UART_REG_GET(uart, R_STS)
R_STS              89 drivers/tty/serial/arc_uart.c #define UART_ALL_IRQ_DISABLE(uart) UART_REG_CLR(uart, R_STS, RXIENB|TXIENB)
R_STS              90 drivers/tty/serial/arc_uart.c #define UART_RX_IRQ_DISABLE(uart)  UART_REG_CLR(uart, R_STS, RXIENB)
R_STS              91 drivers/tty/serial/arc_uart.c #define UART_TX_IRQ_DISABLE(uart)  UART_REG_CLR(uart, R_STS, TXIENB)
R_STS              93 drivers/tty/serial/arc_uart.c #define UART_ALL_IRQ_ENABLE(uart)  UART_REG_OR(uart, R_STS, RXIENB|TXIENB)
R_STS              94 drivers/tty/serial/arc_uart.c #define UART_RX_IRQ_ENABLE(uart)   UART_REG_OR(uart, R_STS, RXIENB)
R_STS              95 drivers/tty/serial/arc_uart.c #define UART_TX_IRQ_ENABLE(uart)   UART_REG_OR(uart, R_STS, TXIENB)