aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Dooks <ben.dooks@sifive.com>2023-05-05 09:02:07 +0100
committerLeo Yu-Chi Liang <ycliang@andestech.com>2023-07-06 17:28:08 +0800
commit661e2215f8483cc7a77badeab6dcbf6a88cc715c (patch)
treedcde3313fd571a2ed2132ef1bc9975570d6373e3
parent551de2169a49962f9d6c02ee3faa4ccc41f32107 (diff)
downloadu-boot-661e2215f8483cc7a77badeab6dcbf6a88cc715c.zip
u-boot-661e2215f8483cc7a77badeab6dcbf6a88cc715c.tar.gz
u-boot-661e2215f8483cc7a77badeab6dcbf6a88cc715c.tar.bz2
riscv: define test_and_{set,clear}_bit in asm/bitops.h
These seem to be missing, and trying to build ubifs without them is causing errors due to these being missing. Signed-off-by: Ben Dooks <ben.dooks@sifive.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
-rw-r--r--arch/riscv/include/asm/bitops.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/riscv/include/asm/bitops.h b/arch/riscv/include/asm/bitops.h
index 536629b..35f1368 100644
--- a/arch/riscv/include/asm/bitops.h
+++ b/arch/riscv/include/asm/bitops.h
@@ -158,6 +158,9 @@ static inline unsigned long ffz(unsigned long word)
#define hweight16(x) generic_hweight16(x)
#define hweight8(x) generic_hweight8(x)
+#define test_and_set_bit __test_and_set_bit
+#define test_and_clear_bit __test_and_clear_bit
+
#define ext2_set_bit test_and_set_bit
#define ext2_clear_bit test_and_clear_bit
#define ext2_test_bit test_bit