Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
v5.9
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _ASM_DMI_H
 3#define _ASM_DMI_H 1
 4
 5#include <linux/slab.h>
 6#include <asm/io.h>
 7
 8/* Use normal IO mappings for DMI */
 9#define dmi_early_remap		ioremap
10#define dmi_early_unmap(x, l)	iounmap(x)
11#define dmi_remap		ioremap
12#define dmi_unmap		iounmap
13#define dmi_alloc(l)		kzalloc(l, GFP_ATOMIC)
14
15#endif
v3.1
 
 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