]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
kconfig: qconf: fix ConfigList::updateListAllforAll()
authorMasahiro Yamada <masahiroy@kernel.org>
Sun, 29 Jun 2025 18:48:56 +0000 (03:48 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Aug 2025 10:14:03 +0000 (12:14 +0200)
[ Upstream commit 721bfe583c52ba1ea74b3736a31a9dcfe6dd6d95 ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
scripts/kconfig/qconf.cc

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