blob: 4afd7102459d7fbdef49be451141e16b0591f5e7 [file] [log] [blame]
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +01001#ifndef _ACPI_IO_H_
2#define _ACPI_IO_H_
3
4#include <linux/io.h>
5#include <acpi/acpi.h>
6
7static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
8 acpi_size size)
9{
10 return ioremap_cache(phys, size);
11}
12
Rafael J. Wysocki13606a22011-02-08 23:38:25 +010013void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);
14
Rafael J. Wysocki2d6d9fd2011-01-19 22:27:14 +010015#endif