[PATCH v2 5/7] lib: sbi: sse: Remove superfluous parenthesis around MSTATUS_* values
Andrew Jones
ajones at ventanamicro.com
Wed Mar 26 11:29:02 PDT 2025
On Tue, Mar 25, 2025 at 11:26:12AM +0100, Clément Léger wrote:
> For some reason, there was a pair of useless parenthesis around MSTATUS_*
> value usage. Remove them.
>
> Signed-off-by: Clément Léger <cleger at rivosinc.com>
> ---
> lib/sbi/sbi_sse.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/sbi/sbi_sse.c b/lib/sbi/sbi_sse.c
> index 330a5476..ac07e68a 100644
> --- a/lib/sbi/sbi_sse.c
> +++ b/lib/sbi/sbi_sse.c
> @@ -518,9 +518,9 @@ static unsigned long sse_interrupted_flags(unsigned long mstatus)
> {
> unsigned long hstatus, flags = 0;
>
> - if (mstatus & (MSTATUS_SPIE))
> + if (mstatus & MSTATUS_SPIE)
> flags |= SBI_SSE_ATTR_INTERRUPTED_FLAGS_SSTATUS_SPIE;
> - if (mstatus & (MSTATUS_SPP))
> + if (mstatus & MSTATUS_SPP)
> flags |= SBI_SSE_ATTR_INTERRUPTED_FLAGS_SSTATUS_SPP;
>
> if (misa_extension('H')) {
> --
> 2.47.2
>
Reviewed-by: Andrew Jones <ajones at ventanamicro.com>
More information about the opensbi
mailing list