diff options
| author | Szabolcs Nagy <nsz@port70.net> | 2019-02-24 17:27:39 +0000 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2019-03-13 12:33:36 -0400 | 
| commit | 65735baa75cb7176a0b3b784f46c9500c8639b36 (patch) | |
| tree | a16f873a90a84fd1416cee342144f7856fe9c8f7 | |
| parent | 59904de7e091476e6d19f61bdfc7e157034428b0 (diff) | |
| download | musl-65735baa75cb7176a0b3b784f46c9500c8639b36.tar.gz | |
aarch64: add HWCAP_SSBS from linux v4.20
for armv8.5 speculative store bypass PSTATE bit support,
added in linux commit d71be2b6c0e19180b5f80a6d42039cc074a693a2
| -rw-r--r-- | arch/aarch64/bits/hwcap.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/aarch64/bits/hwcap.h b/arch/aarch64/bits/hwcap.h index 8541e329..8c040014 100644 --- a/arch/aarch64/bits/hwcap.h +++ b/arch/aarch64/bits/hwcap.h @@ -26,3 +26,4 @@  #define HWCAP_USCAT		(1 << 25)  #define HWCAP_ILRCPC		(1 << 26)  #define HWCAP_FLAGM		(1 << 27) +#define HWCAP_SSBS		(1 << 28)  | 
