diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-01-27 13:22:52 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-01-29 10:21:54 +0000 |
commit | cdaddde0672643a2457b163ea1b286a4ea77c0f1 (patch) | |
tree | 8c819303db5f7bdfb1889cfba25dee50433b92ed /src/mainboard | |
parent | 62d6f1f9430151448b4e51c249e345f63bba4f97 (diff) |
mb/emulation/qemu-q35: Rename PICF to PICM in ASL
Change-Id: I395056a164b6597b6fb3dfda0d85f9a0374cd893
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49998
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/emulation/qemu-q35/dsdt.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/emulation/qemu-q35/dsdt.asl b/src/mainboard/emulation/qemu-q35/dsdt.asl index 3a9e571ac2..e35fcdfcf5 100644 --- a/src/mainboard/emulation/qemu-q35/dsdt.asl +++ b/src/mainboard/emulation/qemu-q35/dsdt.asl @@ -143,9 +143,9 @@ DefinitionBlock ( ****************************************************************/ /* Zero => PIC mode, One => APIC Mode */ - Name(\PICF, Zero) + Name(\PICM, Zero) Method(\_PIC, 1, NotSerialized) { - \PICF = Arg0 + \PICM = Arg0 } Scope(\_SB) { @@ -269,7 +269,7 @@ DefinitionBlock ( section 6.2.8.1 */ /* Note: we provide the same info as the PCI routing table of the Bochs BIOS */ - If (\PICF == 0) { + If (\PICM == 0) { Return (PRTP) } Else { Return (PRTA) |