From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 90A69C433F5 for ; Fri, 20 May 2022 17:15:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352101AbiETRPo (ORCPT ); Fri, 20 May 2022 13:15:44 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46706 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244060AbiETRPn (ORCPT ); Fri, 20 May 2022 13:15:43 -0400 Received: from relay.hostedemail.com (smtprelay0014.hostedemail.com [216.40.44.14]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D1CD8185CA8 for ; Fri, 20 May 2022 10:15:42 -0700 (PDT) Received: from omf14.hostedemail.com (a10.router.float.18 [10.200.18.1]) by unirelay13.hostedemail.com (Postfix) with ESMTP id 28AB46172F; Fri, 20 May 2022 17:15:41 +0000 (UTC) Received: from [HIDDEN] (Authenticated sender: joe@perches.com) by omf14.hostedemail.com (Postfix) with ESMTPA id 8E06342; Fri, 20 May 2022 17:15:39 +0000 (UTC) Message-ID: <8d86b87edc9c9fa33b6a18fac8b160ee56e6a07c.camel@perches.com> Subject: Re: [PATCH 1/2] s390: Kconfig: Fix indentation and add comments From: Joe Perches To: Juerg Haefliger , hca@linux.ibm.com, gor@linux.ibm.com, agordeev@linux.ibm.com, borntraeger@linux.ibm.com, svens@linux.ibm.com, linux-s390@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Juerg Haefliger Date: Fri, 20 May 2022 10:15:38 -0700 In-Reply-To: <20220520115708.147841-2-juergh@canonical.com> References: <20220520115708.147841-1-juergh@canonical.com> <20220520115708.147841-2-juergh@canonical.com> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.40.4-1ubuntu2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Stat-Signature: xmfrcrw9tmkmjw8ohx6e3fjwj4xmiz78 X-Rspamd-Server: rspamout04 X-Rspamd-Queue-Id: 8E06342 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Session-ID: U2FsdGVkX18+TkFCMkdWt0lCIlALcSjDn4yaCJE5V+U= X-HE-Tag: 1653066939-396885 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2022-05-20 at 13:57 +0200, Juerg Haefliger wrote: > The convention for indentation seems to be a single tab. Help text is > further indented by an additional two whitespaces. Fix the lines that > violate these rules. > > While add it, add trailing comments to endmenu statements for better > readability. [] > diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig [] > @@ -607,7 +607,7 @@ config RANDOMIZE_BASE > as a security feature that deters exploit attempts relying on > knowledge of the location of kernel internals. > > -endmenu > +endmenu # "Processor type and features" An endmenu comment is relatively unusual. $ git grep '^endmenu' -- '*/Kconfig*' | wc -l 394 $ git grep '^endmenu.*#' -- '*/Kconfig*' | wc -l 20 I believe it doesn't really help readability.