soc/intel/cannonlake: Drop entries from soc_acpi_name()
The THRM and SATA PCI devices do not currently have any ACPI devices defined, so drop them from soc_acpi_name() so they do not end up in the LPI constraint list. This eliminates the following errors under Linux: AE_NOT_FOUND: _SB_.PCI0.THRM AE_NOT_FOUND: _SB_.PCI0.SATA TEST= build/boot google/hatch (jinlon) and verify no ACPI errors. Change-Id: I3827b152644e2eaecc1ad288d441d2dad4d76ccb Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79013 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
0f8cd41be1
commit
e00523aae2
|
@ -85,7 +85,6 @@ const char *soc_acpi_name(const struct device *dev)
|
|||
case SA_DEVFN_GNA: return "GNA";
|
||||
case PCH_DEVFN_XHCI: return "XHCI";
|
||||
case PCH_DEVFN_USBOTG: return "XDCI";
|
||||
case PCH_DEVFN_THERMAL: return "THRM";
|
||||
case PCH_DEVFN_I2C0: return "I2C0";
|
||||
case PCH_DEVFN_I2C1: return "I2C1";
|
||||
case PCH_DEVFN_I2C2: return "I2C2";
|
||||
|
@ -95,7 +94,6 @@ const char *soc_acpi_name(const struct device *dev)
|
|||
case PCH_DEVFN_CSE_IDER: return "CSED";
|
||||
case PCH_DEVFN_CSE_KT: return "CSKT";
|
||||
case PCH_DEVFN_CSE_3: return "CSE3";
|
||||
case PCH_DEVFN_SATA: return "SATA";
|
||||
case PCH_DEVFN_UART2: return "UAR2";
|
||||
case PCH_DEVFN_I2C4: return "I2C4";
|
||||
case PCH_DEVFN_I2C5: return "I2C5";
|
||||
|
|
Loading…
Reference in New Issue