arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / unicore32 / include / asm / fpstate.h
blob5811293e7a7e5b9ac08e6b9036d13fabb6cac09c
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * linux/arch/unicore32/include/asm/fpstate.h
5 * Code specific to PKUnity SoC and UniCore ISA
7 * Copyright (C) 2001-2010 GUAN Xue-tao
8 */
10 #ifndef __UNICORE_FPSTATE_H__
11 #define __UNICORE_FPSTATE_H__
13 #ifndef __ASSEMBLY__
15 #define FP_REGS_NUMBER 33
17 struct fp_state {
18 unsigned int regs[FP_REGS_NUMBER];
19 } __attribute__((aligned(8)));
21 #endif
23 #endif