diff --git a/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl b/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl index d4957f44a4..ac9926562b 100644 --- a/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl +++ b/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl @@ -272,11 +272,9 @@ Scope (\_TZ) } } Method (_OFF) { - If (_STA ()) { - \FLVL = 4 - \_SB.PCI0.LPCB.SIO.ENVC.F2PS = FAN4_PWM - Notify (\_TZ.THRM, 0x81) - } + // FAN4 is the minimum cooling state (idle/lowest fan speed) + // There is no lower state to transition to, so _OFF is a no-op + // to maintain proper ACPI power resource state machine semantics } } diff --git a/src/mainboard/google/jecht/variants/jecht/include/variant/acpi/thermal.asl b/src/mainboard/google/jecht/variants/jecht/include/variant/acpi/thermal.asl index d4957f44a4..ac9926562b 100644 --- a/src/mainboard/google/jecht/variants/jecht/include/variant/acpi/thermal.asl +++ b/src/mainboard/google/jecht/variants/jecht/include/variant/acpi/thermal.asl @@ -272,11 +272,9 @@ Scope (\_TZ) } } Method (_OFF) { - If (_STA ()) { - \FLVL = 4 - \_SB.PCI0.LPCB.SIO.ENVC.F2PS = FAN4_PWM - Notify (\_TZ.THRM, 0x81) - } + // FAN4 is the minimum cooling state (idle/lowest fan speed) + // There is no lower state to transition to, so _OFF is a no-op + // to maintain proper ACPI power resource state machine semantics } } diff --git a/src/mainboard/google/jecht/variants/rikku/include/variant/acpi/thermal.asl b/src/mainboard/google/jecht/variants/rikku/include/variant/acpi/thermal.asl index d4957f44a4..ac9926562b 100644 --- a/src/mainboard/google/jecht/variants/rikku/include/variant/acpi/thermal.asl +++ b/src/mainboard/google/jecht/variants/rikku/include/variant/acpi/thermal.asl @@ -272,11 +272,9 @@ Scope (\_TZ) } } Method (_OFF) { - If (_STA ()) { - \FLVL = 4 - \_SB.PCI0.LPCB.SIO.ENVC.F2PS = FAN4_PWM - Notify (\_TZ.THRM, 0x81) - } + // FAN4 is the minimum cooling state (idle/lowest fan speed) + // There is no lower state to transition to, so _OFF is a no-op + // to maintain proper ACPI power resource state machine semantics } } diff --git a/src/mainboard/google/jecht/variants/tidus/include/variant/acpi/thermal.asl b/src/mainboard/google/jecht/variants/tidus/include/variant/acpi/thermal.asl index 6be0181578..749cd51208 100644 --- a/src/mainboard/google/jecht/variants/tidus/include/variant/acpi/thermal.asl +++ b/src/mainboard/google/jecht/variants/tidus/include/variant/acpi/thermal.asl @@ -380,11 +380,9 @@ Scope (\_TZ) } } Method (_OFF) { - If (_STA ()) { - \FLVL = 4 - \_SB.PCI0.LPCB.SIO.ENVC.F2PS = F4PW - Notify (\_TZ.THRM, 0x81) - } + // FAN4 is the minimum cooling state (idle/lowest fan speed) + // There is no lower state to transition to, so _OFF is a no-op + // to maintain proper ACPI power resource state machine semantics } }