Revert "soc/intel/rtd3: Hook up supported states to Kconfig"

This reverts commit dbb97c3243.

Reason for revert: dependency for revert CB:73903

Change-Id: Ibc81483239a13f456d20631725641b7219af4ef8
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73904
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Michael Niewöhner 2023-04-07 17:11:36 +00:00 committed by Felix Singer
parent 076f86125f
commit a231e71cf1
1 changed files with 1 additions and 4 deletions

View File

@ -511,10 +511,7 @@ static void pcie_rtd3_acpi_fill_ssdt(const struct device *dev)
acpigen_write_device(acpi_device_name(dev)); acpigen_write_device(acpi_device_name(dev));
acpigen_write_ADR(0); acpigen_write_ADR(0);
acpigen_write_STA(ACPI_STATUS_DEVICE_ALL_ON); acpigen_write_STA(ACPI_STATUS_DEVICE_ALL_ON);
if (CONFIG(D3COLD_SUPPORT)) acpigen_write_name_integer("_S0W", ACPI_DEVICE_SLEEP_D3_COLD);
acpigen_write_name_integer("_S0W", ACPI_DEVICE_SLEEP_D3_COLD);
else
acpigen_write_name_integer("_S0W", ACPI_DEVICE_SLEEP_D3_HOT);
acpi_device_add_storage_d3_enable(NULL); acpi_device_add_storage_d3_enable(NULL);