]> 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>
Thu, 28 Aug 2025 14:22:36 +0000 (16:22 +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 b889fe604e422ecc38ccf217c7965a49b1a17b1d..1c44c83f61a6c916b2d73a40b3c14e5a3a180ced 100644 (file)
@@ -476,7 +476,7 @@ void ConfigList::updateListAllForAll()
        while (it.hasNext()) {
                ConfigList *list = it.next();
 
-               list->updateList();
+               list->updateListAll();
        }
 }