ACPI: thermal: Drop enabled flag from struct acpi_thermal_active
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 25 Jul 2023 18:06:37 +0000 (20:06 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 1 Aug 2023 12:04:30 +0000 (14:04 +0200)
The enabled field of struct acpi_thermal_active is only updated and never
read, so drop it along with the related code.

No intentional functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/thermal.c

index 3163a40..3aab121 100644 (file)
@@ -115,7 +115,6 @@ struct acpi_thermal_active {
        struct acpi_handle_list devices;
        unsigned long temperature;
        bool valid;
-       bool enabled;
 };
 
 struct acpi_thermal_trips {
@@ -1039,15 +1038,10 @@ static int acpi_thermal_resume(struct device *dev)
                if (!tz->trips.active[i].valid)
                        break;
 
-               tz->trips.active[i].enabled = true;
                for (j = 0; j < tz->trips.active[i].devices.count; j++) {
                        result = acpi_bus_update_power(
                                        tz->trips.active[i].devices.handles[j],
                                        &power_state);
-                       if (result || (power_state != ACPI_STATE_D0)) {
-                               tz->trips.active[i].enabled = false;
-                               break;
-                       }
                }
        }