On Fri, Aug 14, 2020 at 11:16:17PM +0300, Sakari Ailus wrote: > On Fri, Aug 14, 2020 at 07:30:11PM +0300, Andy Shevchenko wrote: > > The code looks more nicer if we use: > > while (i--) > > instead: > > for (i = i - 1; i >= 0; i--) ... > > - for (i--; i >= 0; i--) > > + while (i--) > > Nice! This would also allow making i unsigned again. Yes. I will add this to v2. -- With Best Regards, Andy Shevchenko