Lines Matching refs:int_ena
207 u32 int_ena; in esp32_uart_stop_tx() local
209 int_ena = esp32_uart_read(port, UART_INT_ENA_REG); in esp32_uart_stop_tx()
210 int_ena &= ~UART_TXFIFO_EMPTY_INT; in esp32_uart_stop_tx()
211 esp32_uart_write(port, UART_INT_ENA_REG, int_ena); in esp32_uart_stop_tx()
279 u32 int_ena; in esp32_uart_transmit_buffer() local
281 int_ena = esp32_uart_read(port, UART_INT_ENA_REG); in esp32_uart_transmit_buffer()
282 int_ena |= UART_TXFIFO_EMPTY_INT; in esp32_uart_transmit_buffer()
283 esp32_uart_write(port, UART_INT_ENA_REG, int_ena); in esp32_uart_transmit_buffer()
316 u32 int_ena; in esp32_uart_stop_rx() local
318 int_ena = esp32_uart_read(port, UART_INT_ENA_REG); in esp32_uart_stop_rx()
319 int_ena &= ~UART_RXFIFO_FULL_INT; in esp32_uart_stop_rx()
320 esp32_uart_write(port, UART_INT_ENA_REG, int_ena); in esp32_uart_stop_rx()