Re: [PATCH v2 6/7] IOMUX: Drop indentation level by removing redundant 'else'

2020-12-18 Thread Simon Glass
On Wed, 16 Dec 2020 at 16:16, Andy Shevchenko wrote: > > Obviously the following has unnecessary indentation level in 'else' branch. > > if (foo) { > ... > return; > } else { > ... > } > > Drop indentation level by removing re

[PATCH v2 6/7] IOMUX: Drop indentation level by removing redundant 'else'

2020-12-16 Thread Andy Shevchenko
Obviously the following has unnecessary indentation level in 'else' branch. if (foo) { ... return; } else { ... } Drop indentation level by removing redundant 'else'. Signed-off-by: Andy Shevchenko --- v2: no changes commo