Re: [PATCH v6 05/25] spl: Remove NULL assignments in spl_load_info

2023-11-08 Thread Sean Anderson
On 11/7/23 23:23, Simon Glass wrote: Hi Sean, On Sun, 5 Nov 2023 at 19:26, Sean Anderson wrote: Remove NULL assignments to fields in spl_load_info when .load doesn't reference these fields. This can result in more efficient code. filename must stay even if it is unused, since load_simple_fit

Re: [PATCH v6 05/25] spl: Remove NULL assignments in spl_load_info

2023-11-07 Thread Simon Glass
Hi Sean, On Sun, 5 Nov 2023 at 19:26, Sean Anderson wrote: > > Remove NULL assignments to fields in spl_load_info when .load doesn't > reference these fields. This can result in more efficient code. filename > must stay even if it is unused, since load_simple_fit uses it. > > Signed-off-by: Sean

[PATCH v6 05/25] spl: Remove NULL assignments in spl_load_info

2023-11-05 Thread Sean Anderson
Remove NULL assignments to fields in spl_load_info when .load doesn't reference these fields. This can result in more efficient code. filename must stay even if it is unused, since load_simple_fit uses it. Signed-off-by: Sean Anderson --- Changes in v6: - New