From patchwork Fri Apr 29 09:02:08 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dirk Gouders X-Patchwork-Id: 8979611 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 09BA59F39D for ; Fri, 29 Apr 2016 10:42:05 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2FE38201FA for ; Fri, 29 Apr 2016 10:42:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 08816201CD for ; Fri, 29 Apr 2016 10:42:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751663AbcD2KmB (ORCPT ); Fri, 29 Apr 2016 06:42:01 -0400 Received: from services.gouders.net ([141.101.32.176]:35629 "EHLO services.gouders.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751583AbcD2KmB (ORCPT ); Fri, 29 Apr 2016 06:42:01 -0400 Received: from localhost ([193.175.198.193]) (authenticated bits=0) by services.gouders.net (8.14.8/8.14.8) with ESMTP id u3TAfr57020847 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 29 Apr 2016 12:41:53 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gouders.net; s=gnet; t=1461926513; bh=RDK90Cq3Q/CNZ0u56LKXzX7YVnC0dy3TS82Gm0twvt0=; h=From:To:Cc:Subject:In-Reply-To:Date:References; b=PoI/vSOSHlPyXr/eYbRLkvwUu3anVwjr7TG4YQObS85PHL9ZAy56B+2GQkoTMzEVF PnMc8MQOh+1X4ad3sD8lV6XcAGF0i7c+UdTJ9fs5PeJ4fSUDNSNO2qu+xBXyPtyIOf NtkqLnOB/tL0i/3dNkZh0F/O6WDRkLYvrRGOmOS4= From: Dirk Gouders To: Michal Marek , Jonathan Corbet Cc: linux-kbuild@vger.kernel.org Subject: [PATCH 1/2] kconfig-language: fix comment on dependency-generated menu structures. In-Reply-To: (Dirk Gouders's message of "Fri, 29 Apr 2016 12:25:34 +0200") Date: Fri, 29 Apr 2016 11:02:08 +0200 References: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (gnu/linux) Message-ID: MIME-Version: 1.0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-6.0 required=5.0 tests=BAYES_00, DKIM_ADSP_DISCARD, DKIM_SIGNED, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP In the given example, the comment becomes visible when it's dependency is set to 'n', but the text asserts the opposite. Signed-off-by: Dirk Gouders --- Documentation/kbuild/kconfig-language.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Documentation/kbuild/kconfig-language.txt b/Documentation/kbuild/kconfig-language.txt index c52856d..14dd131 100644 --- a/Documentation/kbuild/kconfig-language.txt +++ b/Documentation/kbuild/kconfig-language.txt @@ -241,9 +241,8 @@ comment "module support disabled" depends on !MODULES MODVERSIONS directly depends on MODULES, this means it's only visible if -MODULES is different from 'n'. The comment on the other hand is always -visible when MODULES is visible (the (empty) dependency of MODULES is -also part of the comment dependencies). +MODULES is different from 'n'. The comment on the other hand is only +visible when MODULES is set to 'n'. Kconfig syntax