diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-07 11:19:01 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-14 06:43:56 +0200 |
commit | 5b75a6c896bc858cd36eb7be5fbc23318cf4205c (patch) | |
tree | 302d4f242d7966dc1133fbb52f7837059412524d /scripts/kconfig/qconf.h | |
parent | kconfig: qconf: remove unused argument from ConfigView::updateList() (diff) | |
download | linux-5b75a6c896bc858cd36eb7be5fbc23318cf4205c.tar.xz linux-5b75a6c896bc858cd36eb7be5fbc23318cf4205c.zip |
kconfig: qconf: remove 'parent' from ConfigList::updateMenuList()
All the call-sites of this function pass 'this' to the first argument.
So, 'parent' is always the 'this' pointer.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | scripts/kconfig/qconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h index 6d06ec399ff0..952bd98d7912 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -102,7 +102,7 @@ public: bool menuSkip(struct menu *); void updateMenuList(ConfigItem *parent, struct menu*); - void updateMenuList(ConfigList *parent, struct menu*); + void updateMenuList(struct menu *menu); bool updateAll; |