xref: /openbmc/linux/arch/ia64/include/asm/dmi.h (revision cf074402)
17f30491cSTony Luck #ifndef _ASM_DMI_H
27f30491cSTony Luck #define _ASM_DMI_H 1
37f30491cSTony Luck 
45a0e3ad6STejun Heo #include <linux/slab.h>
57f30491cSTony Luck #include <asm/io.h>
67f30491cSTony Luck 
77f30491cSTony Luck /* Use normal IO mappings for DMI */
8cf074402SArd Biesheuvel #define dmi_early_remap		ioremap
9cf074402SArd Biesheuvel #define dmi_early_unmap(x, l)	iounmap(x)
10cf074402SArd Biesheuvel #define dmi_remap		ioremap
11cf074402SArd Biesheuvel #define dmi_unmap		iounmap
12ab10596fSJoe Perches #define dmi_alloc(l)		kzalloc(l, GFP_ATOMIC)
137f30491cSTony Luck 
147f30491cSTony Luck #endif
15