]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
kconfig: qconf: fix ConfigList::updateListAllforAll()
authorMasahiro Yamada <masahiroy@kernel.org>
Sun, 29 Jun 2025 18:48:56 +0000 (03:48 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Sat, 26 Jul 2025 06:31:30 +0000 (15:31 +0900)
ConfigList::updateListForAll() and ConfigList::updateListAllforAll()
are identical.

Commit f9b918fae678 ("kconfig: qconf: move ConfigView::updateList(All)
to ConfigList class") was a misconversion.

Fixes: f9b918fae678 ("kconfig: qconf: move ConfigView::updateList(All) to ConfigList class")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/qconf.cc

index dc056b0a8fdeca6b1376c44e7a250e512f4bf752..a7c98bbbd8acfbbac76b9daba47bc26332170837 100644 (file)
@@ -486,7 +486,7 @@ void ConfigList::updateListAllForAll()
        while (it.hasNext()) {
                ConfigList *list = it.next();
 
-               list->updateList();
+               list->updateListAll();
        }
 }