Message ID | 20230216130444.795997-3-dbarboza@ventanamicro.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | make write_misa a no-op and FEATURE_* cleanups | expand |
On Thu, Feb 16, 2023 at 9:07 PM Daniel Henrique Barboza <dbarboza@ventanamicro.com> wrote: > > It's unused after write_misa() became a regular no-op. > > Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> > --- > target/riscv/cpu.h | 1 - > 1 file changed, 1 deletion(-) > Reviewed-by: Bin Meng <bmeng@tinylab.org>
On Thu, Feb 16, 2023 at 10:04:36AM -0300, Daniel Henrique Barboza wrote: > It's unused after write_misa() became a regular no-op. > > Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> > --- > target/riscv/cpu.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h > index 7128438d8e..01803a020d 100644 > --- a/target/riscv/cpu.h > +++ b/target/riscv/cpu.h > @@ -89,7 +89,6 @@ enum { > RISCV_FEATURE_MMU, > RISCV_FEATURE_PMP, > RISCV_FEATURE_EPMP, > - RISCV_FEATURE_MISA, > RISCV_FEATURE_DEBUG > }; > > -- > 2.39.1 > Probably could squash into the previous patch, but anyway Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Thanks, drew
On 2/16/23 11:52, Andrew Jones wrote: > On Thu, Feb 16, 2023 at 10:04:36AM -0300, Daniel Henrique Barboza wrote: >> It's unused after write_misa() became a regular no-op. >> >> Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> >> --- >> target/riscv/cpu.h | 1 - >> 1 file changed, 1 deletion(-) >> >> diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h >> index 7128438d8e..01803a020d 100644 >> --- a/target/riscv/cpu.h >> +++ b/target/riscv/cpu.h >> @@ -89,7 +89,6 @@ enum { >> RISCV_FEATURE_MMU, >> RISCV_FEATURE_PMP, >> RISCV_FEATURE_EPMP, >> - RISCV_FEATURE_MISA, >> RISCV_FEATURE_DEBUG >> }; >> >> -- >> 2.39.1 >> > > Probably could squash into the previous patch, but anyway True. Since we have a typo to fix in there I'll squash this in. Thanks, Daniel > > Reviewed-by: Andrew Jones <ajones@ventanamicro.com> > > Thanks, > drew
diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h index 7128438d8e..01803a020d 100644 --- a/target/riscv/cpu.h +++ b/target/riscv/cpu.h @@ -89,7 +89,6 @@ enum { RISCV_FEATURE_MMU, RISCV_FEATURE_PMP, RISCV_FEATURE_EPMP, - RISCV_FEATURE_MISA, RISCV_FEATURE_DEBUG };
It's unused after write_misa() became a regular no-op. Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> --- target/riscv/cpu.h | 1 - 1 file changed, 1 deletion(-)