diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2023-02-21 14:31:26 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-02-21 16:17:22 +0000 |
commit | f317068fc3138162a59b802773795edfe3e8a8ef (patch) | |
tree | 44efc37237e44599bb34ac5e6d7796ce068f3e60 /src/soc/intel/xeon_sp | |
parent | 1e7f1c065869922acb72fb5c5b5bcce5cffea388 (diff) |
mb/ocp/*: Remove unused ACPI opregion
The base for this region is a magic number and none for the fields are
used, which likely means this was simply copied from a different
firmware.
Change-Id: I217bbd0b098cd15ef296854cc6262d651f11d10e
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73183
Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/xeon_sp')
-rw-r--r-- | src/soc/intel/xeon_sp/acpi/iiostack.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/xeon_sp/acpi/iiostack.asl b/src/soc/intel/xeon_sp/acpi/iiostack.asl index d2b22962fe..0dd39a0f54 100644 --- a/src/soc/intel/xeon_sp/acpi/iiostack.asl +++ b/src/soc/intel/xeon_sp/acpi/iiostack.asl @@ -31,7 +31,7 @@ CreateDWordField (Arg3, 0x08, CDW3) \ SUPP = CDW2 \ CTRL = CDW3 \ - If ((AHPE || ((SUPP & 0x16) != 0x16))) \ + If ((SUPP & 0x16) != 0x16) \ { \ CTRL &= 0x1E \ } \ |