Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/85716?usp=email )
Change subject: ec/starlabs/merlin: Only include battery ACPI for systems with a battery ......................................................................
ec/starlabs/merlin: Only include battery ACPI for systems with a battery
Change-Id: I381714887f4319d8e1a25c1e493ba03631cbf082 Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/85716 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@gmail.com --- M src/ec/starlabs/merlin/acpi/ec.asl 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: Matt DeVillier: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/ec/starlabs/merlin/acpi/ec.asl b/src/ec/starlabs/merlin/acpi/ec.asl index 2fc1248..8fa16c5 100644 --- a/src/ec/starlabs/merlin/acpi/ec.asl +++ b/src/ec/starlabs/merlin/acpi/ec.asl @@ -134,7 +134,9 @@ }
#include "ac.asl" +#if CONFIG(SYSTEM_TYPE_LAPTOP) || CONFIG(SYSTEM_TYPE_DETACHABLE) #include "battery.asl" +#endif #if !CONFIG(EC_STARLABS_MERLIN) #include "events.asl" #endif