From: Thorsten Blum Date: Wed, 10 Jul 2024 20:24:18 +0000 (+0200) Subject: riscv: Remove unnecessary int cast in variable_fls() X-Git-Tag: v6.12~816^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb9086e95ad84f14e4f4db97ed96422c74407830;p=platform%2Fkernel%2Flinux-amlogic.git riscv: Remove unnecessary int cast in variable_fls() __builtin_clz() returns an int and casting the whole expression to int is unnecessary. Remove it. Signed-off-by: Thorsten Blum Signed-off-by: Yury Norov --- diff --git a/arch/riscv/include/asm/bitops.h b/arch/riscv/include/asm/bitops.h index 880606b0469a..71af9ecfcfcb 100644 --- a/arch/riscv/include/asm/bitops.h +++ b/arch/riscv/include/asm/bitops.h @@ -170,7 +170,7 @@ legacy: ({ \ typeof(x) x_ = (x); \ __builtin_constant_p(x_) ? \ - (int)((x_ != 0) ? (32 - __builtin_clz(x_)) : 0) \ + ((x_ != 0) ? (32 - __builtin_clz(x_)) : 0) \ : \ variable_fls(x_); \ })