From fbb8035a46a84ac7c5ee53c875c1de6f202d0884 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 26 May 2019 20:38:30 +0200 Subject: zinc: arm64: use cpu_get_elf_hwcap accessor for 5.2 --- src/compat/compat.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/compat/compat.h') diff --git a/src/compat/compat.h b/src/compat/compat.h index 436fe44..c34f754 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -829,6 +829,10 @@ static inline void skb_mark_not_on_list(struct sk_buff *skb) #define COMPAT_CANNOT_INDIVIDUAL_NETLINK_OPS_POLICY #endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 2, 0) && defined(__aarch64__) +#define cpu_have_named_feature(name) (elf_hwcap & (HWCAP_ ## name)) +#endif + /* https://github.com/ClangBuiltLinux/linux/issues/7 */ #if defined( __clang__) && (!defined(CONFIG_CLANG_VERSION) || CONFIG_CLANG_VERSION < 80000) #include -- cgit v1.2.3-59-g8ed1b