Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.9
/
55ad5962e97430c83d51df36fc18865ee4f78c48
/
.
/
arch
/
ia64
/
include
/
asm
/
dmi.h
blob: 1ed4c8fedb8370e7b8403e36244b2fce043e0aae [
file
] [
log
] [
blame
]
#ifndef
_ASM_DMI_H
#define
_ASM_DMI_H
1
#include
<linux/slab.h>
#include
<asm/io.h>
/* Use normal IO mappings for DMI */
#define
dmi_ioremap ioremap
#define
dmi_iounmap
(
x
,
l
)
iounmap
(
x
)
#define
dmi_alloc
(
l
)
kmalloc
(
l
,
GFP_ATOMIC
)
#endif