video: fbdev: mmp: replace usage of found with dedicated list iterator variable
authorJakob Koschel <jakobkoschel@gmail.com>
Thu, 31 Mar 2022 22:35:03 +0000 (00:35 +0200)
committerHelge Deller <deller@gmx.de>
Tue, 12 Apr 2022 20:06:10 +0000 (22:06 +0200)
commit610323d8f6f8b479a04eec33fd67e4152beb7b65
treee8af031ce7891ca8189dbd428ff254e6e47ebcc1
parentc40b65304c361432b841bdbd5b1c8dfa918d6baa
video: fbdev: mmp: replace usage of found with dedicated list iterator variable

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 boolean [1].

This removes the need to use a found variable and simply checking if
the variable was set, can determine if the break/goto was hit.

Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/
Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com>
Signed-off-by: Helge Deller <deller@gmx.de>
drivers/video/fbdev/mmp/core.c