Release 4.14 arch/x86/include/asm/dmi.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_X86_DMI_H
#define _ASM_X86_DMI_H
#include <linux/compiler.h>
#include <linux/init.h>
#include <asm/io.h>
#include <asm/setup.h>
static __always_inline __init void *dmi_alloc(unsigned len)
{
return extend_brk(len, sizeof(int));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 12 | 52.17% | 1 | 25.00% |
Jeremy Fitzhardinge | 10 | 43.48% | 2 | 50.00% |
Parag Warudkar | 1 | 4.35% | 1 | 25.00% |
Total | 23 | 100.00% | 4 | 100.00% |
/* Use early IO mappings for DMI because it's initialized early */
#define dmi_early_remap early_memremap
#define dmi_early_unmap early_memunmap
#define dmi_remap(_x, _l) memremap(_x, _l, MEMREMAP_WB)
#define dmi_unmap(_x) memunmap(_x)
#endif /* _ASM_X86_DMI_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 25 | 35.71% | 1 | 11.11% |
Jeremy Fitzhardinge | 19 | 27.14% | 2 | 22.22% |
Tom Lendacky | 12 | 17.14% | 1 | 11.11% |
Ard Biesheuvel | 8 | 11.43% | 1 | 11.11% |
H. Peter Anvin | 3 | 4.29% | 1 | 11.11% |
Jean Delvare | 1 | 1.43% | 1 | 11.11% |
Parag Warudkar | 1 | 1.43% | 1 | 11.11% |
Greg Kroah-Hartman | 1 | 1.43% | 1 | 11.11% |
Total | 70 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.