]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/x86/include/asm/fpu/regset.h
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / arch / x86 / include / asm / fpu / regset.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
59a36d16
IM
2/*
3 * FPU regset handling methods:
4 */
5#ifndef _ASM_X86_FPU_REGSET_H
6#define _ASM_X86_FPU_REGSET_H
7
8#include <linux/regset.h>
9
10extern user_regset_active_fn regset_fpregs_active, regset_xregset_fpregs_active;
11extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
12 xstateregs_get;
13extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
14 xstateregs_set;
15
16/*
17 * xstateregs_active == regset_fpregs_active. Please refer to the comment
18 * at the definition of regset_fpregs_active.
19 */
20#define xstateregs_active regset_fpregs_active
21
22#endif /* _ASM_X86_FPU_REGSET_H */