>From 562965e3d62ebbf6612c287d43556f7bd048ad24 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Tue, 29 Mar 2022 20:50:12 +0000 Subject: [PATCH 20/20] aarch64: bits/hwcap.h: add HWCAP2_AFP and HWCAP2_RPRES from linux v5.17 see linux commit 5c13f042e73200b50573ace63e1a6b94e2917616 arm64: cpufeature: add HWCAP for FEAT_AFP linux commit 1175011a7d0030d49dc9c10bde36f08f26d0a8ee arm64: cpufeature: add HWCAP for FEAT_RPRES --- arch/aarch64/bits/hwcap.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/aarch64/bits/hwcap.h b/arch/aarch64/bits/hwcap.h index 4601e1af..7248ca3f 100644 --- a/arch/aarch64/bits/hwcap.h +++ b/arch/aarch64/bits/hwcap.h @@ -51,3 +51,5 @@ #define HWCAP2_BTI (1 << 17) #define HWCAP2_MTE (1 << 18) #define HWCAP2_ECV (1 << 19) +#define HWCAP2_AFP (1 << 20) +#define HWCAP2_RPRES (1 << 21) -- 2.35.1