mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-20 17:52:52 +00:00
nvme_drv: only set the first INTMS bit on reset
Since we only set the first INTMC bit a check in QEMU will fail and we don't get interrupts. Fixes #3369.
This commit is contained in:
parent
a2abc13425
commit
737e9580b8
@ -702,7 +702,7 @@ struct Nvme::Controller : public Genode::Attached_mmio
|
||||
void _reset()
|
||||
{
|
||||
/* disable intr and ctrlr */
|
||||
write<Intms>(~0u);
|
||||
write<Intms>(1);
|
||||
write<Cc>(0);
|
||||
|
||||
try { _wait_for_rdy(0); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user