Lines Matching refs:uart_status
1402 NDS_STATUS HDICA_GetUartStatus (NDS_BYTE *uart_status) in HDICA_GetUartStatus() argument
1404 *uart_status = 0; in HDICA_GetUartStatus()
1408 *uart_status |= HDICA_UART_STATUS_TX_IS_READY; /* Bit 0 */ in HDICA_GetUartStatus()
1413 *uart_status |= HDICA_UART_STATUS_RX_IS_READY; /* Bit 1 */ in HDICA_GetUartStatus()
1418 *uart_status |= HDICA_UART_STATUS_RCV_PARITY_ERROR; /* Bit 2 */ in HDICA_GetUartStatus()
1423 *uart_status |= HDICA_UART_STATUS_OVERFLOW; /* Bit 3 */ in HDICA_GetUartStatus()
1428 *uart_status |= HDICA_UART_STATUS_TX_PARITY_ERROR; /* Bit 4 */ in HDICA_GetUartStatus()
1433 *uart_status |= HDICA_UART_STATUS_CONVENTION_DIRECT; /* Bit 5 */ in HDICA_GetUartStatus()
1438 *uart_status |= HDICA_UART_STATUS_INTERRUPT_PENDING; /* Bit 6 */ in HDICA_GetUartStatus()
1443 *uart_status |= HDICA_UART_STATUS_CARD_INSERTED; /* Bit 7 */ in HDICA_GetUartStatus()
1446 NDS_FUNC("[%s]-[%d] -- status[0x%x]\n", __FUNCTION__, __LINE__, *uart_status); in HDICA_GetUartStatus()