From: Masahiro Yamada Date: Mon, 12 Aug 2024 11:49:46 +0000 (+0900) Subject: kconfig: stop adding P_SYMBOL property to symbols X-Git-Tag: v6.12-rc1~61^2~42 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5e6cc7e3f2965fc3df901416336f6bf985a363da;p=thirdparty%2Flinux.git kconfig: stop adding P_SYMBOL property to symbols I believe its last usage was in the following code: if (prop == NULL) prop = stack->sym->prop; This code was previously used to print the file name and line number of associated symbols in sym_check_print_recursive(), which was removed by commit 9d0d26604657 ("kconfig: recursive checks drop file/lineno"). Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 323cc0b62be6c..854edeb4d2db0 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -78,10 +78,8 @@ void menu_add_entry(struct symbol *sym) *last_entry_ptr = menu; last_entry_ptr = &menu->next; current_entry = menu; - if (sym) { - menu_add_symbol(P_SYMBOL, sym, NULL); + if (sym) list_add_tail(&menu->link, &sym->menus); - } } struct menu *menu_add_menu(void)