A10: Handle UART BUSY interrupt; Back out change to mkconfig.c -- it causes problems for assembly
This commit is contained in:
parent
e40cc00b06
commit
25abb10ef3
@ -1173,12 +1173,17 @@ static int uart_interrupt(struct uart_dev_s *dev)
|
||||
break;
|
||||
}
|
||||
|
||||
/* Busy detect. Just ignore. Cleared by reading the status register */
|
||||
|
||||
case UART_IIR_IID_BUSY:
|
||||
break;
|
||||
|
||||
/* Otherwise, there is no (handled) interrupt pending */
|
||||
|
||||
case UART_IIR_IID_NONE:
|
||||
default:
|
||||
{
|
||||
dbg("Unexpected IIR: %02x\n", status);
|
||||
lldbg("Unexpected IIR: %02x\n", status);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user