Blame view

include/linux/acpi_io.h 318 Bytes
2d6d9fd3a   Rafael J. Wysocki   ACPI: Introduce a...
1
2
3
4
5
6
7
8
9
10
11
  #ifndef _ACPI_IO_H_
  #define _ACPI_IO_H_
  
  #include <linux/io.h>
  #include <acpi/acpi.h>
  
  static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
  					    acpi_size size)
  {
         return ioremap_cache(phys, size);
  }
13606a2de   Rafael J. Wysocki   ACPI: Introduce a...
12
  void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);
2d6d9fd3a   Rafael J. Wysocki   ACPI: Introduce a...
13
  #endif