]> 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 14:39:21 +0000 (16:39 +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 eaa465b0ccf9c480544ddd7609c3fc4de3a72e13..49607555d343bb6c784bdf7d7b7ed8f5cc08defa 100644 (file)
@@ -478,7 +478,7 @@ void ConfigList::updateListAllForAll()
        while (it.hasNext()) {
                ConfigList *list = it.next();
 
-               list->updateList();
+               list->updateListAll();
        }
 }