Re: [PATCH 08/10] gpu: nova-core: falcon: Add support to check if RISC-V is active

From: Timur Tabi
Date: Fri Aug 29 2025 - 14:49:02 EST


On Wed, 2025-08-27 at 18:20 +1000, Alistair Popple wrote:
> +    pub(crate) fn is_riscv_active(&self, bar: &Bar0) -> Result<bool> {
> +        let cpuctl = regs::NV_PRISCV_RISCV_CPUCTL::read(bar, &E::ID);
> +        Ok(cpuctl.active_stat())
> +    }

I think this should return just bool instead of Result<bool>