Re: [U-Boot] [PATCH] image-sig: use designated initializers for algorithm

2017-10-24 Thread Simon Glass
On 23 October 2017 at 03:03, Masahiro Yamada wrote: > > Designated initializers are more readable because we do not > have to check the order in the struct definitions. > > Signed-off-by: Masahiro Yamada > --- > > common/image-sig.c | 44 ++-- > 1 file cha

[U-Boot] [PATCH] image-sig: use designated initializers for algorithm

2017-10-22 Thread Masahiro Yamada
Designated initializers are more readable because we do not have to check the order in the struct definitions. Signed-off-by: Masahiro Yamada --- common/image-sig.c | 44 ++-- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/common/image-si