You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
435 B
18 lines
435 B
14 years ago
|
#ifndef _ACPI_IO_H_
|
||
|
#define _ACPI_IO_H_
|
||
|
|
||
|
#include <linux/io.h>
|
||
|
|
||
|
static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
|
||
|
acpi_size size)
|
||
|
{
|
||
|
return ioremap_cache(phys, size);
|
||
|
}
|
||
|
|
||
14 years ago
|
void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);
|
||
|
|
||
13 years ago
|
int acpi_os_map_generic_address(struct acpi_generic_address *addr);
|
||
|
void acpi_os_unmap_generic_address(struct acpi_generic_address *addr);
|
||
|
|
||
14 years ago
|
#endif
|