blob: 1ed4c8fedb8370e7b8403e36244b2fce043e0aae [file] [log] [blame]
Matt Domsch3ed3bce2006-03-26 01:37:03 -08001#ifndef _ASM_DMI_H
2#define _ASM_DMI_H 1
3
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Matt Domsch3ed3bce2006-03-26 01:37:03 -08005#include <asm/io.h>
6
Jean Delvareef3fb662008-05-01 04:35:01 -07007/* 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
Matt Domsch3ed3bce2006-03-26 01:37:03 -080012#endif