mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-22 11:22:26 +00:00
vmm: acpi: Make GED interrupt edge triggered
This was causing issues when the kernel was trying to reset the interrupt and making the reboot fail. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
e1af17d93a
commit
c063bb8d30
@ -295,7 +295,7 @@ fn create_ged_device() -> Vec<u8> {
|
||||
&aml::Name::new(
|
||||
"_CRS".into(),
|
||||
&aml::ResourceTemplate::new(vec![&aml::Interrupt::new(
|
||||
true, false, false, false, 5,
|
||||
true, true, false, false, 5,
|
||||
)]),
|
||||
),
|
||||
&aml::OpRegion::new("GDST".into(), aml::OpRegionSpace::SystemIO, 0xb000, 0x1),
|
||||
|
Loading…
x
Reference in New Issue
Block a user