From patchwork Tue Jun 30 06:48:53 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 11633309 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 3FFC26C1 for ; Tue, 30 Jun 2020 06:49:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2004320775 for ; Tue, 30 Jun 2020 06:49:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593499744; bh=VG7zYc0y4AM4p4doVmFNEQyDSCOCDupyKMyfvabfOyI=; h=From:Cc:Subject:Date:To:List-ID:From; b=X87Ka1SJPiLPLS/rY2/c7IcNLcTmqdrXjiZefzxp5oDbqWF2232RRmm/EVsDekVRY TXYKQ6yoabOIgJKQ+4ootn6rX/1ic2utpS4L1XB0Ezg7RWNKbDuPPK7C3vZdjz3MTJ U1svZWtEKmQ6fDOnbywscHslhtU0koSXZ3W0opnc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730451AbgF3GtD (ORCPT ); Tue, 30 Jun 2020 02:49:03 -0400 Received: from mail.kernel.org ([198.145.29.99]:34520 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730386AbgF3GtD (ORCPT ); Tue, 30 Jun 2020 02:49:03 -0400 Received: from mail.kernel.org (ip5f5ad5c5.dynamic.kabel-deutschland.de [95.90.213.197]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 23E2820775; Tue, 30 Jun 2020 06:49:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593499743; bh=VG7zYc0y4AM4p4doVmFNEQyDSCOCDupyKMyfvabfOyI=; h=From:To:Cc:Subject:Date:From; b=ltgsi2ifJ4ccWWM08nl3ptUuGQlScZA7xzwjPDEWh8a6I3t/o4XSKgCHj5pkq9Cxu RmKcJrQnrBbz++Olj5mX6qyM+/NiNwZLr5ZYw4VfoKuC3KjEbpxDq1Y0qzxhVLyE8+ recTwsCF+XAqQgC8O3wvU+fyOSDjITDaED2EeCEg= Received: from mchehab by mail.kernel.org with local (Exim 4.93) (envelope-from ) id 1jqA4e-008Yuv-5L; Tue, 30 Jun 2020 08:48:56 +0200 From: Mauro Carvalho Chehab Cc: Mauro Carvalho Chehab , Masahiro Yamada , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] kconfig: qconf: parse newer types at debug info Date: Tue, 30 Jun 2020 08:48:53 +0200 Message-Id: <3f61abe3ae457bb5b61fb217394bbb9590ca17ef.1593499731.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 To: unlisted-recipients:; (no To-header on input) Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org There are 3 types that are not parsed by the debug info logic. Add support for them. Signed-off-by: Mauro Carvalho Chehab --- scripts/kconfig/qconf.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index fd721c6c4c94..4a616128a154 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1154,6 +1154,9 @@ QString ConfigInfoView::debug_info(struct symbol *sym) case P_DEFAULT: case P_SELECT: case P_RANGE: + case P_COMMENT: + case P_IMPLY: + case P_SYMBOL: debug += prop_get_type_name(prop->type); debug += ": "; expr_print(prop->expr, expr_print_help, &debug, E_NONE);