diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2024-01-04 13:01:51 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2024-01-04 13:01:51 +0100 |
commit | f845351a40623c80c4d48404f042c193a8c5334a (patch) | |
tree | e1ca8c9bb5db4d335619b4e8b1e85ada6b99d741 /drivers/acpi/internal.h | |
parent | Merge branch 'acpi-utils' (diff) | |
parent | ACPI: thermal_lib: include "internal.h" for function prototypes (diff) | |
download | linux-f845351a40623c80c4d48404f042c193a8c5334a.tar.xz linux-f845351a40623c80c4d48404f042c193a8c5334a.zip |
Merge branch 'acpi-thermal'
Merge ACPI thermal zone driver updates for 6.8-rc1:
- Use generic ACPI helpers for evaluating trip point temperature
objects in the ACPI thermal zone driver (Rafael J. Wysockii, Arnd
Bergmann).
- Add Thermal fast Sampling Period (_TFP) support to the ACPI thermal
zone driver (Jeff Brasen).
* acpi-thermal:
ACPI: thermal_lib: include "internal.h" for function prototypes
ACPI: thermal: Add Thermal fast Sampling Period (_TFP) support
ACPI: thermal: Use library functions to obtain trip point temperature values
ACPI: thermal_lib: Add functions returning temperature in deci-Kelvin
thermal: ACPI: Move the ACPI thermal library to drivers/acpi/
Diffstat (limited to 'drivers/acpi/internal.h')
-rw-r--r-- | drivers/acpi/internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/acpi/internal.h b/drivers/acpi/internal.h index 266aad006fe4..6588525c45ef 100644 --- a/drivers/acpi/internal.h +++ b/drivers/acpi/internal.h @@ -85,6 +85,11 @@ bool acpi_scan_is_offline(struct acpi_device *adev, bool uevent); acpi_status acpi_sysfs_table_handler(u32 event, void *table, void *context); void acpi_scan_table_notify(void); +int acpi_active_trip_temp(struct acpi_device *adev, int id, int *ret_temp); +int acpi_passive_trip_temp(struct acpi_device *adev, int *ret_temp); +int acpi_hot_trip_temp(struct acpi_device *adev, int *ret_temp); +int acpi_critical_trip_temp(struct acpi_device *adev, int *ret_temp); + #ifdef CONFIG_ARM64 int acpi_arch_thermal_cpufreq_pctg(void); #else |