brintos

brintos / linux-shallow public Read only

0
0
Text · 251 B · db4f2c4 Raw
14 lines · c
1// SPDX-License-Identifier: GPL-2.0-only2// Copyright (C) 2021-3 ARM Limited.3 4#ifndef FP_PTRACE_H5#define FP_PTRACE_H6 7#define SVCR_SM_SHIFT 08#define SVCR_ZA_SHIFT 19 10#define SVCR_SM (1 << SVCR_SM_SHIFT)11#define SVCR_ZA (1 << SVCR_ZA_SHIFT)12 13#endif14