diff options
author | Szabolcs Nagy <nsz@port70.net> | 2018-06-09 22:58:19 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-06-19 13:27:27 -0400 |
commit | 1177f61d6e9eb3751014ef27fb3ce1b58c620b00 (patch) | |
tree | 35fbff7fbf2671c6d0bf94fb4f1ed8755ee71114 | |
parent | f3b6690a53c81a869173bbdce701972c952a4e82 (diff) | |
download | musl-1177f61d6e9eb3751014ef27fb3ce1b58c620b00.tar.gz musl-1177f61d6e9eb3751014ef27fb3ce1b58c620b00.tar.xz musl-1177f61d6e9eb3751014ef27fb3ce1b58c620b00.zip |
mips: add HWCAP_ flags from linux v4.17
new in linux commit 256211f2b0b251e532d1899b115e374feb16fa7a
-rw-r--r-- | arch/mips/bits/hwcap.h | 1 | ||||
-rw-r--r-- | arch/mips64/bits/hwcap.h | 1 | ||||
-rw-r--r-- | arch/mipsn32/bits/hwcap.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/bits/hwcap.h b/arch/mips/bits/hwcap.h index 05cffba4..13e86fe7 100644 --- a/arch/mips/bits/hwcap.h +++ b/arch/mips/bits/hwcap.h @@ -1,2 +1,3 @@ #define HWCAP_MIPS_R6 (1 << 0) #define HWCAP_MIPS_MSA (1 << 1) +#define HWCAP_MIPS_CRC32 (1 << 2) diff --git a/arch/mips64/bits/hwcap.h b/arch/mips64/bits/hwcap.h index 05cffba4..13e86fe7 100644 --- a/arch/mips64/bits/hwcap.h +++ b/arch/mips64/bits/hwcap.h @@ -1,2 +1,3 @@ #define HWCAP_MIPS_R6 (1 << 0) #define HWCAP_MIPS_MSA (1 << 1) +#define HWCAP_MIPS_CRC32 (1 << 2) diff --git a/arch/mipsn32/bits/hwcap.h b/arch/mipsn32/bits/hwcap.h index 05cffba4..13e86fe7 100644 --- a/arch/mipsn32/bits/hwcap.h +++ b/arch/mipsn32/bits/hwcap.h @@ -1,2 +1,3 @@ #define HWCAP_MIPS_R6 (1 << 0) #define HWCAP_MIPS_MSA (1 << 1) +#define HWCAP_MIPS_CRC32 (1 << 2) |