mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-18 19:26:12 +00:00
thermosphere: pl011: fix uartSetInterruptStatus
We don't need to forcefully clear the line level
This commit is contained in:
parent
116d0703f4
commit
86eaa7777b
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ void uartSetInterruptStatus(UartDevice dev, ReadWriteDirection direction, bool e
|
||||||
if (enable) {
|
if (enable) {
|
||||||
uart->imsc |= mask;
|
uart->imsc |= mask;
|
||||||
} else {
|
} else {
|
||||||
uart->icr = mask;
|
//uart->icr = mask;
|
||||||
uart->imsc &= ~mask;
|
uart->imsc &= ~mask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue