Re: [PATCH 13/43] target/ppc/mmu_common.c: Convert local variable to bool

2024-07-03 Thread Nicholas Piggin
On Mon May 27, 2024 at 9:12 AM AEST, BALATON Zoltan wrote: > In mmu6xx_get_physical_address() ds is used as bool, declare it as > such. Also use named constant instead of hex value. Oh nx was bool, ignore my previous comment then. Reviewed-by: Nicholas Piggin > > Signed-off-by: BALATON Zoltan

[PATCH 13/43] target/ppc/mmu_common.c: Convert local variable to bool

2024-05-26 Thread BALATON Zoltan
In mmu6xx_get_physical_address() ds is used as bool, declare it as such. Also use named constant instead of hex value. Signed-off-by: BALATON Zoltan --- target/ppc/mmu_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/target/ppc/mmu_common.c b/target/ppc/mmu_comm