Commit e283187c authored by Heiko Stuebner's avatar Heiko Stuebner Committed by Palmer Dabbelt

riscv: use BIT() marco for cpufeature probing

Using the appropriate BIT macro makes the code better readable.
Suggested-by: default avatarConor Dooley <conor.dooley@microchip.com>
Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
Reviewed-by: default avatarConor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/20220905111027.2463297-5-heiko@sntech.deSigned-off-by: default avatarPalmer Dabbelt <palmer@rivosinc.com>
parent 499590c0
...@@ -289,10 +289,10 @@ static u32 __init_or_module cpufeature_probe(unsigned int stage) ...@@ -289,10 +289,10 @@ static u32 __init_or_module cpufeature_probe(unsigned int stage)
u32 cpu_req_feature = 0; u32 cpu_req_feature = 0;
if (cpufeature_probe_svpbmt(stage)) if (cpufeature_probe_svpbmt(stage))
cpu_req_feature |= (1U << CPUFEATURE_SVPBMT); cpu_req_feature |= BIT(CPUFEATURE_SVPBMT);
if (cpufeature_probe_zicbom(stage)) if (cpufeature_probe_zicbom(stage))
cpu_req_feature |= (1U << CPUFEATURE_ZICBOM); cpu_req_feature |= BIT(CPUFEATURE_ZICBOM);
return cpu_req_feature; return cpu_req_feature;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment