Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
acpi_io.h
Go to the documentation of this file.
1 #ifndef _ACPI_IO_H_
2 #define _ACPI_IO_H_
3 
4 #include <linux/io.h>
5 #include <acpi/acpi.h>
6 
7 static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
8  acpi_size size)
9 {
10  return ioremap_cache(phys, size);
11 }
12 
13 void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);
14 
17 
18 #endif