diff --git a/thermosphere/src/platform/qemu/uart.c b/thermosphere/src/platform/qemu/uart.c index 9f4df0a89..8ef03ca4f 100644 --- a/thermosphere/src/platform/qemu/uart.c +++ b/thermosphere/src/platform/qemu/uart.c @@ -184,7 +184,7 @@ void uartSetInterruptStatus(UartDevice dev, ReadWriteDirection direction, bool e if (enable) { uart->imsc |= mask; } else { - uart->icr = mask; + //uart->icr = mask; uart->imsc &= ~mask; } }