repo.or.cz
/
linux-2.6
/
next.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'kvm-updates/2.6.36' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-2.6/next.git]
/
arch
/
ia64
/
include
/
asm
/
dmi.h
blob
1ed4c8fedb8370e7b8403e36244b2fce043e0aae
1
#ifndef _ASM_DMI_H
2
#define _ASM_DMI_H 1
3
4
#include <linux/slab.h>
5
#include <asm/io.h>
6
7
/* Use normal IO mappings for DMI */
8
#define dmi_ioremap ioremap
9
#define dmi_iounmap(x,l) iounmap(x)
10
#define dmi_alloc(l) kmalloc(l, GFP_ATOMIC)
11
12
#endif