1 // SPDX-License-Identifier: GPL-2.0-only 2 // Copyright (C) 2021-3 ARM Limited. 3 4 #ifndef FP_PTRACE_H 5 #define FP_PTRACE_H 6 7 #define SVCR_SM_SHIFT 0 8 #define SVCR_ZA_SHIFT 1 9 10 #define SVCR_SM (1 << SVCR_SM_SHIFT) 11 #define SVCR_ZA (1 << SVCR_ZA_SHIFT) 12 13 #endif 14
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.