Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Mar 24-27, 2025, special US time zones
Register
Loading...
Note: File does not exist in v6.9.4.
 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_early_remap		ioremap
 9#define dmi_early_unmap(x, l)	iounmap(x)
10#define dmi_remap		ioremap
11#define dmi_unmap		iounmap
12#define dmi_alloc(l)		kzalloc(l, GFP_ATOMIC)
13
14#endif