Re: [PATCH] system/physmem: remove redundant arg reassignment

2024-02-26 Thread Philippe Mathieu-Daudé
On 15/2/24 12:09, Philippe Mathieu-Daudé wrote: On 15/2/24 10:15, Manos Pitsidianakis wrote: Arguments `ram_block` are reassigned to local declarations `block` without further use. Remove re-assignment to reduce noise. Signed-off-by: Manos Pitsidianakis ---   system/physmem.c | 7 ++-   1 f

Re: [PATCH] system/physmem: remove redundant arg reassignment

2024-02-15 Thread Philippe Mathieu-Daudé
On 15/2/24 10:15, Manos Pitsidianakis wrote: Arguments `ram_block` are reassigned to local declarations `block` without further use. Remove re-assignment to reduce noise. Signed-off-by: Manos Pitsidianakis --- system/physmem.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) dif

Re: [PATCH] system/physmem: remove redundant arg reassignment

2024-02-15 Thread Michael Tokarev
15.02.2024 12:15, Manos Pitsidianakis : Arguments `ram_block` are reassigned to local declarations `block` without further use. Remove re-assignment to reduce noise. Reviewed-by: Michael Tokarev And applied to trivial-patches, thanks! /mjt

Re: [PATCH] system/physmem: remove redundant arg reassignment

2024-02-15 Thread David Hildenbrand
On 15.02.24 10:15, Manos Pitsidianakis wrote: Arguments `ram_block` are reassigned to local declarations `block` without further use. Remove re-assignment to reduce noise. Signed-off-by: Manos Pitsidianakis --- system/physmem.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) di

[PATCH] system/physmem: remove redundant arg reassignment

2024-02-15 Thread Manos Pitsidianakis
Arguments `ram_block` are reassigned to local declarations `block` without further use. Remove re-assignment to reduce noise. Signed-off-by: Manos Pitsidianakis --- system/physmem.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/system/physmem.c b/system/physmem.c ind