Unverified Commit 870b3ac5 authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files

!888 [sync] PR-881: arm64: Keep HWCAP2_WFXT uapi consistent with upstream

Merge Pull Request from: @openeuler-sync-bot 
 

Origin pull request: 
https://gitee.com/openeuler/kernel/pulls/881 
 
Currently, the bitfield of HWCAP2_WFXT is (1 << 23) inconsistent with mainline set (1UL << 31).
To avoid possible uapi break, keep the bitfield consistent with mainline. 
 
Link:https://gitee.com/openeuler/kernel/pulls/888

 

Reviewed-by: default avatarZenghui Yu <yuzenghui@huawei.com>
Signed-off-by: default avatarZheng Zengkai <zhengzengkai@huawei.com>
parents 6796bf23 a71ec1b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,6 +78,6 @@
#define HWCAP2_ECV		(1 << 19)
#define HWCAP2_AFP		(1 << 20)
#define HWCAP2_RPRES		(1 << 21)
#define HWCAP2_WFXT		(1 << 23)
#define HWCAP2_WFXT		(1UL << 31)

#endif /* _UAPI__ASM_HWCAP_H */