12 lines
		
	
	
		
			215 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			215 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _ASM_DMI_H
 | |
| #define _ASM_DMI_H 1
 | |
| 
 | |
| #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
 |