staging: rtl8192e: Fix smatch error and warning in rtl_core.c
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / acpi_io.h
blob4afd7102459d7fbdef49be451141e16b0591f5e7
1 #ifndef _ACPI_IO_H_
2 #define _ACPI_IO_H_
4 #include <linux/io.h>
5 #include <acpi/acpi.h>
7 static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
8 acpi_size size)
10 return ioremap_cache(phys, size);
13 void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);
15 #endif