From 284e4f17554381cac5f9b90cf85a1f3fc7fce6f3 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Tue, 23 Aug 2022 16:37:25 +0100 Subject: [PATCH] aarch64: morello: update HWCAP2_MORELLO value Unfortunately this will keep changing during the development as upstream linux did not want to reserve a bit for morello. --- sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index d61ab83d9e..29c1fe0c0e 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -78,4 +78,4 @@ #define HWCAP2_AFP (1 << 20) #define HWCAP2_RPRES (1 << 21) #define HWCAP2_MTE3 (1 << 22) -#define HWCAP2_MORELLO (1 << 19) /* FIXME: This bit will change. */ +#define HWCAP2_MORELLO (1UL << 31) /* FIXME: This bit will change. */