https://github.com/torvalds/linux
Raw File
Tip revision: 620917de59eeb934b9f8cf35cc2d95c1ac8ed0fc authored by Linus Torvalds on 11 July 2011, 23:51:52 UTC
Linux 3.0-rc7
Tip revision: 620917d
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