https://github.com/torvalds/linux
Raw File
Tip revision: b0af8dfdd67699e25083478c63eedef2e72ebd85 authored by Linus Torvalds on 28 June 2011, 02:12:22 UTC
Linux 3.0-rc5
Tip revision: b0af8df
acpi_io.h
#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);
}

void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);

#endif
back to top