]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/unicore32/include/asm/fpstate.h
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
[mirror_ubuntu-jammy-kernel.git] / arch / unicore32 / include / asm / fpstate.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
d9bc1579
G
2/*
3 * linux/arch/unicore32/include/asm/fpstate.h
4 *
5 * Code specific to PKUnity SoC and UniCore ISA
6 *
7 * Copyright (C) 2001-2010 GUAN Xue-tao
d9bc1579
G
8 */
9
10#ifndef __UNICORE_FPSTATE_H__
11#define __UNICORE_FPSTATE_H__
12
13#ifndef __ASSEMBLY__
14
15#define FP_REGS_NUMBER 33
16
17struct fp_state {
18 unsigned int regs[FP_REGS_NUMBER];
19} __attribute__((aligned(8)));
20
21#endif
22
23#endif