From: Masahiro Yamada Date: Thu, 20 Aug 2020 17:43:27 +0000 (+0900) Subject: kconfig: qconf: remove redundant help in the info view X-Git-Tag: v5.15~3036^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68fd110b3e7e2c90d781a132cc4362fbfb4a95a1;p=platform%2Fkernel%2Flinux-starfive.git kconfig: qconf: remove redundant help in the info view The same information is repeated in the info view. Remove the second one. Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 3a8f625..4c5688a 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1106,11 +1106,6 @@ void ConfigInfoView::menuInfo(void) if (showDebug()) debug = debug_info(sym); - - struct gstr help_gstr = str_new(); - menu_get_ext_help(_menu, &help_gstr); - help = print_filter(str_get(&help_gstr)); - str_free(&help_gstr); } else if (_menu->prompt) { head += ""; head += print_filter(_menu->prompt->text); @@ -1126,7 +1121,7 @@ void ConfigInfoView::menuInfo(void) if (showDebug()) debug += QString().sprintf("defined at %s:%d

", _menu->file->name, _menu->lineno); - setText(head + debug + help); + setText(head + debug); } QString ConfigInfoView::debug_info(struct symbol *sym)