Re: [PATCH] video: fbdev-MMP: replace usage of found with dedicated list iterator variable

2022-04-12 Thread Helge Deller
On 4/1/22 00:35, Jakob Koschel wrote: > To move the list iterator variable into the list_for_each_entry_*() > macro in the future it should be avoided to use the list iterator > variable after the loop body. > > To *never* use the list iterator variable after the loop it was > concluded to use a

[PATCH] video: fbdev-MMP: replace usage of found with dedicated list iterator variable

2022-03-31 Thread Jakob Koschel
To move the list iterator variable into the list_for_each_entry_*() macro in the future it should be avoided to use the list iterator variable after the loop body. To *never* use the list iterator variable after the loop it was concluded to use a separate iterator variable instead of a found