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 X-Spam-Level: X-Spam-Status: No, score=-16.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8CB91C43470 for ; Mon, 17 May 2021 08:18:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5A8F36108D for ; Mon, 17 May 2021 08:18:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235471AbhEQIUG (ORCPT ); Mon, 17 May 2021 04:20:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:52542 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235640AbhEQIT7 (ORCPT ); Mon, 17 May 2021 04:19:59 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 787E960C3D; Mon, 17 May 2021 08:17:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1621239459; bh=BZxAEIkbSW7MbE/cKpN6ELnrkkO5GDgcmYWBCq1E9oE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xe+a+SfspvvC4YFLbvfFGou5Jh4ZaOJhNkVXbtGzQzDaw9YtnD2k5/AYJRH37GLz1 HarCPEyiCvtPLqqvURKmUeKluy77qdfGcIrJi/isWCrMZQ6A5QP/7rtzd2dmdK2J0A 3SHQ8E4iKKDOiX1B7oZK1lgB1PjMHYvnVe3bZMP0= Date: Mon, 17 May 2021 10:17:38 +0200 From: Greg KH To: Juerg Haefliger Cc: aaro.koskinen@iki.fi, tony@atomide.com, linux@prisktech.co.nz, David Miller , kuba@kernel.org, jejb@linux.ibm.com, martin.petersen@oracle.com, Lee Jones , Daniel Thompson , jingoohan1@gmail.com, mst@redhat.com, jasowang@redhat.com, zbr@ioremap.net, pablo@netfilter.org, kadlec@netfilter.org, fw@strlen.de, horms@verge.net.au, ja@ssi.bg, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-crypto@vger.kernel.org, linux-usb@vger.kernel.org, netdev , linux-scsi@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, virtualization@lists.linux-foundation.org, linux-fsdevel@vger.kernel.org, netfilter-devel@vger.kernel.org, coreteam@netfilter.org, lvs-devel@vger.kernel.org, LKML , Juerg Haefliger Subject: Re: [PATCH] treewide: Remove leading spaces in Kconfig files Message-ID: References: <20210516132209.59229-1-juergh@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org On Mon, May 17, 2021 at 10:07:43AM +0200, Juerg Haefliger wrote: > On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > > There are a few occurences of leading spaces before tabs in a couple of > > > Kconfig files. Remove them by running the following command: > > > > > > $ find . -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' > > > > > > Signed-off-by: Juerg Haefliger > > > --- > > > arch/arm/mach-omap1/Kconfig | 12 ++++++------ > > > arch/arm/mach-vt8500/Kconfig | 6 +++--- > > > arch/arm/mm/Kconfig | 10 +++++----- > > > drivers/char/hw_random/Kconfig | 8 ++++---- > > > drivers/net/usb/Kconfig | 10 +++++----- > > > drivers/net/wan/Kconfig | 4 ++-- > > > drivers/scsi/Kconfig | 2 +- > > > drivers/uio/Kconfig | 2 +- > > > drivers/video/backlight/Kconfig | 10 +++++----- > > > drivers/virtio/Kconfig | 2 +- > > > drivers/w1/masters/Kconfig | 6 +++--- > > > fs/proc/Kconfig | 4 ++-- > > > init/Kconfig | 2 +- > > > net/netfilter/Kconfig | 2 +- > > > net/netfilter/ipvs/Kconfig | 2 +- > > > 15 files changed, 41 insertions(+), 41 deletions(-) > > > > Please break this up into one patch per subsystem and resend to the > > proper maintainers that way. > > Hmm... How is my patch different from other treewide Kconfig cleanup > patches like: > a7f7f6248d97 ("treewide: replace '---help---' in Kconfig files with 'help'") > 8636a1f9677d ("treewide: surround Kconfig file paths with double quotes") > 83fc61a563cb ("treewide: Fix typos in Kconfig") > 769a12a9c760 ("treewide: Kconfig: fix wording / spelling") > f54619f28fb6 ("treewide: Fix typos in Kconfig") Ok, I'll just ignore this and not try to suggest a way for you to get your change accepted... greg k-h 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 X-Spam-Level: X-Spam-Status: No, score=-13.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0AFDFC433ED for ; Mon, 17 May 2021 08:17:50 +0000 (UTC) Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id B1BBA6128C for ; Mon, 17 May 2021 08:17:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B1BBA6128C Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=virtualization-bounces@lists.linux-foundation.org Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id 7AEF1839D8; Mon, 17 May 2021 08:17:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FEy8vPAOwmQm; Mon, 17 May 2021 08:17:46 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [IPv6:2605:bc80:3010:104::8cd3:938]) by smtp1.osuosl.org (Postfix) with ESMTP id 6E75883A05; Mon, 17 May 2021 08:17:45 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 4571BC000D; Mon, 17 May 2021 08:17:45 +0000 (UTC) Received: from smtp4.osuosl.org (smtp4.osuosl.org [IPv6:2605:bc80:3010::137]) by lists.linuxfoundation.org (Postfix) with ESMTP id B7B9AC0001 for ; Mon, 17 May 2021 08:17:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id 87982403D3 for ; Mon, 17 May 2021 08:17:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Authentication-Results: smtp4.osuosl.org (amavisd-new); dkim=pass (1024-bit key) header.d=linuxfoundation.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OOxvU8ZfHYqD for ; Mon, 17 May 2021 08:17:40 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.8.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp4.osuosl.org (Postfix) with ESMTPS id 52642403D2 for ; Mon, 17 May 2021 08:17:40 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 787E960C3D; Mon, 17 May 2021 08:17:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1621239459; bh=BZxAEIkbSW7MbE/cKpN6ELnrkkO5GDgcmYWBCq1E9oE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xe+a+SfspvvC4YFLbvfFGou5Jh4ZaOJhNkVXbtGzQzDaw9YtnD2k5/AYJRH37GLz1 HarCPEyiCvtPLqqvURKmUeKluy77qdfGcIrJi/isWCrMZQ6A5QP/7rtzd2dmdK2J0A 3SHQ8E4iKKDOiX1B7oZK1lgB1PjMHYvnVe3bZMP0= Date: Mon, 17 May 2021 10:17:38 +0200 From: Greg KH To: Juerg Haefliger Subject: Re: [PATCH] treewide: Remove leading spaces in Kconfig files Message-ID: References: <20210516132209.59229-1-juergh@canonical.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: Cc: linux-fbdev@vger.kernel.org, mst@redhat.com, tony@atomide.com, dri-devel@lists.freedesktop.org, virtualization@lists.linux-foundation.org, zbr@ioremap.net, Lee Jones , Daniel Thompson , linux-scsi@vger.kernel.org, aaro.koskinen@iki.fi, Juerg Haefliger , kadlec@netfilter.org, lvs-devel@vger.kernel.org, ja@ssi.bg, coreteam@netfilter.org, kuba@kernel.org, pablo@netfilter.org, jejb@linux.ibm.com, horms@verge.net.au, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, martin.petersen@oracle.com, jingoohan1@gmail.com, linux-usb@vger.kernel.org, fw@strlen.de, LKML , linux@prisktech.co.nz, netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org, netdev , linux-fsdevel@vger.kernel.org, David Miller X-BeenThere: virtualization@lists.linux-foundation.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux virtualization List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: virtualization-bounces@lists.linux-foundation.org Sender: "Virtualization" On Mon, May 17, 2021 at 10:07:43AM +0200, Juerg Haefliger wrote: > On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > > There are a few occurences of leading spaces before tabs in a couple of > > > Kconfig files. Remove them by running the following command: > > > > > > $ find . -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' > > > > > > Signed-off-by: Juerg Haefliger > > > --- > > > arch/arm/mach-omap1/Kconfig | 12 ++++++------ > > > arch/arm/mach-vt8500/Kconfig | 6 +++--- > > > arch/arm/mm/Kconfig | 10 +++++----- > > > drivers/char/hw_random/Kconfig | 8 ++++---- > > > drivers/net/usb/Kconfig | 10 +++++----- > > > drivers/net/wan/Kconfig | 4 ++-- > > > drivers/scsi/Kconfig | 2 +- > > > drivers/uio/Kconfig | 2 +- > > > drivers/video/backlight/Kconfig | 10 +++++----- > > > drivers/virtio/Kconfig | 2 +- > > > drivers/w1/masters/Kconfig | 6 +++--- > > > fs/proc/Kconfig | 4 ++-- > > > init/Kconfig | 2 +- > > > net/netfilter/Kconfig | 2 +- > > > net/netfilter/ipvs/Kconfig | 2 +- > > > 15 files changed, 41 insertions(+), 41 deletions(-) > > > > Please break this up into one patch per subsystem and resend to the > > proper maintainers that way. > > Hmm... How is my patch different from other treewide Kconfig cleanup > patches like: > a7f7f6248d97 ("treewide: replace '---help---' in Kconfig files with 'help'") > 8636a1f9677d ("treewide: surround Kconfig file paths with double quotes") > 83fc61a563cb ("treewide: Fix typos in Kconfig") > 769a12a9c760 ("treewide: Kconfig: fix wording / spelling") > f54619f28fb6 ("treewide: Fix typos in Kconfig") Ok, I'll just ignore this and not try to suggest a way for you to get your change accepted... greg k-h _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization 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 X-Spam-Level: X-Spam-Status: No, score=-14.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A4AFC433ED for ; Mon, 17 May 2021 08:30:32 +0000 (UTC) Received: from desiato.infradead.org (desiato.infradead.org [90.155.92.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id B3D7361242 for ; Mon, 17 May 2021 08:30:31 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B3D7361242 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=desiato.20200630; h=Sender:Content-Transfer-Encoding :Content-Type:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=aPa6tPOxoArtS9fRuHMrO/oqENVr77K+eHlnl96kXYg=; b=MeqnJXHh/5dtDMkZxRvOnUH/H +kwL1sFb+xTDhfHRPG76aH+BMIQbqjJvcaSHf8T33ZJHFbA2J90Nlx8NhIS5Tw5VYe3GYk6A+rvWO B9tLXM8ySmQ8DlroZBxNJARSLTDTwJm1QC30FT+AOvc8PbQ3V+76q/qXUz7BlkSQfoDSCttPPkf6a hlKytlwZ4ATRJtp1HtdwolT2GHB+yOItGNyEuXzKWvsqfyLkh+XG84itZR15x5x0QgTQe6iSh3lls M/WgHR3g4a4HgHWTK5CNNWVYeNd6Af9xy7enirpdEVMlQk4v4v1IfP5AbXPMAoIVXxzwD9Fl34biM XXAh0Cf7A==; Received: from localhost ([::1] helo=desiato.infradead.org) by desiato.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1liYc9-00EF1g-K9; Mon, 17 May 2021 08:28:37 +0000 Received: from bombadil.infradead.org ([2607:7c80:54:e::133]) by desiato.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1liYRd-00ECDS-5V for linux-arm-kernel@desiato.infradead.org; Mon, 17 May 2021 08:17:56 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=gWLqRvmGNMDeJjXH8zKOodZCiQoBZU4flOQ4/z5q9n0=; b=B/CK+XFJ51LqSb+FX3vvRAijuf 98PzSASA51ObTCgcT2ym2stXyS9TiKhS7jMUoY4eMELVw9KqAjAzwBz+x4R3TEbvThk1aZNh/MJ1i gtjjtD1iv/n6Ek5dN448YeYFmw7mqZ/0VcwdsMAg6dE1BXU8W77ZxQ9WnoT2LSDliYlHsIkPRTUqM W2AYg5GjE+a/+eqdZ1LGUUbenKEBp80JEalftlD8iLZZCxclLfdm5n9B3czRsBRq7hF1OneZw2X9X EE40czNUZpBphl/mqKMd4n4VEyAF+EzWczwh6d6kNd8Pujqmfa+UsQDsCN5zwJ9PyIHeMBUdgJ7P6 LpBX38fw==; Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1liYRY-00DaUM-DG for linux-arm-kernel@lists.infradead.org; Mon, 17 May 2021 08:17:43 +0000 Received: by mail.kernel.org (Postfix) with ESMTPSA id 787E960C3D; Mon, 17 May 2021 08:17:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1621239459; bh=BZxAEIkbSW7MbE/cKpN6ELnrkkO5GDgcmYWBCq1E9oE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xe+a+SfspvvC4YFLbvfFGou5Jh4ZaOJhNkVXbtGzQzDaw9YtnD2k5/AYJRH37GLz1 HarCPEyiCvtPLqqvURKmUeKluy77qdfGcIrJi/isWCrMZQ6A5QP/7rtzd2dmdK2J0A 3SHQ8E4iKKDOiX1B7oZK1lgB1PjMHYvnVe3bZMP0= Date: Mon, 17 May 2021 10:17:38 +0200 From: Greg KH To: Juerg Haefliger Cc: aaro.koskinen@iki.fi, tony@atomide.com, linux@prisktech.co.nz, David Miller , kuba@kernel.org, jejb@linux.ibm.com, martin.petersen@oracle.com, Lee Jones , Daniel Thompson , jingoohan1@gmail.com, mst@redhat.com, jasowang@redhat.com, zbr@ioremap.net, pablo@netfilter.org, kadlec@netfilter.org, fw@strlen.de, horms@verge.net.au, ja@ssi.bg, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-crypto@vger.kernel.org, linux-usb@vger.kernel.org, netdev , linux-scsi@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, virtualization@lists.linux-foundation.org, linux-fsdevel@vger.kernel.org, netfilter-devel@vger.kernel.org, coreteam@netfilter.org, lvs-devel@vger.kernel.org, LKML , Juerg Haefliger Subject: Re: [PATCH] treewide: Remove leading spaces in Kconfig files Message-ID: References: <20210516132209.59229-1-juergh@canonical.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210517_011740_492628_B8DB2669 X-CRM114-Status: GOOD ( 18.33 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, May 17, 2021 at 10:07:43AM +0200, Juerg Haefliger wrote: > On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > > There are a few occurences of leading spaces before tabs in a couple of > > > Kconfig files. Remove them by running the following command: > > > > > > $ find . -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' > > > > > > Signed-off-by: Juerg Haefliger > > > --- > > > arch/arm/mach-omap1/Kconfig | 12 ++++++------ > > > arch/arm/mach-vt8500/Kconfig | 6 +++--- > > > arch/arm/mm/Kconfig | 10 +++++----- > > > drivers/char/hw_random/Kconfig | 8 ++++---- > > > drivers/net/usb/Kconfig | 10 +++++----- > > > drivers/net/wan/Kconfig | 4 ++-- > > > drivers/scsi/Kconfig | 2 +- > > > drivers/uio/Kconfig | 2 +- > > > drivers/video/backlight/Kconfig | 10 +++++----- > > > drivers/virtio/Kconfig | 2 +- > > > drivers/w1/masters/Kconfig | 6 +++--- > > > fs/proc/Kconfig | 4 ++-- > > > init/Kconfig | 2 +- > > > net/netfilter/Kconfig | 2 +- > > > net/netfilter/ipvs/Kconfig | 2 +- > > > 15 files changed, 41 insertions(+), 41 deletions(-) > > > > Please break this up into one patch per subsystem and resend to the > > proper maintainers that way. > > Hmm... How is my patch different from other treewide Kconfig cleanup > patches like: > a7f7f6248d97 ("treewide: replace '---help---' in Kconfig files with 'help'") > 8636a1f9677d ("treewide: surround Kconfig file paths with double quotes") > 83fc61a563cb ("treewide: Fix typos in Kconfig") > 769a12a9c760 ("treewide: Kconfig: fix wording / spelling") > f54619f28fb6 ("treewide: Fix typos in Kconfig") Ok, I'll just ignore this and not try to suggest a way for you to get your change accepted... greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel 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 X-Spam-Level: X-Spam-Status: No, score=-13.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AF41DC433ED for ; Mon, 17 May 2021 08:17:42 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 6ACDD610A1 for ; Mon, 17 May 2021 08:17:42 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6ACDD610A1 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A3FAF6E8E8; Mon, 17 May 2021 08:17:41 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by gabe.freedesktop.org (Postfix) with ESMTPS id 26FB96E8E8 for ; Mon, 17 May 2021 08:17:40 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 787E960C3D; Mon, 17 May 2021 08:17:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1621239459; bh=BZxAEIkbSW7MbE/cKpN6ELnrkkO5GDgcmYWBCq1E9oE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xe+a+SfspvvC4YFLbvfFGou5Jh4ZaOJhNkVXbtGzQzDaw9YtnD2k5/AYJRH37GLz1 HarCPEyiCvtPLqqvURKmUeKluy77qdfGcIrJi/isWCrMZQ6A5QP/7rtzd2dmdK2J0A 3SHQ8E4iKKDOiX1B7oZK1lgB1PjMHYvnVe3bZMP0= Date: Mon, 17 May 2021 10:17:38 +0200 From: Greg KH To: Juerg Haefliger Subject: Re: [PATCH] treewide: Remove leading spaces in Kconfig files Message-ID: References: <20210516132209.59229-1-juergh@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-fbdev@vger.kernel.org, mst@redhat.com, tony@atomide.com, jasowang@redhat.com, dri-devel@lists.freedesktop.org, virtualization@lists.linux-foundation.org, zbr@ioremap.net, Lee Jones , Daniel Thompson , linux-scsi@vger.kernel.org, aaro.koskinen@iki.fi, Juerg Haefliger , kadlec@netfilter.org, lvs-devel@vger.kernel.org, ja@ssi.bg, coreteam@netfilter.org, kuba@kernel.org, pablo@netfilter.org, jejb@linux.ibm.com, horms@verge.net.au, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, martin.petersen@oracle.com, jingoohan1@gmail.com, linux-usb@vger.kernel.org, fw@strlen.de, LKML , linux@prisktech.co.nz, netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org, netdev , linux-fsdevel@vger.kernel.org, David Miller Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Mon, May 17, 2021 at 10:07:43AM +0200, Juerg Haefliger wrote: > On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > > There are a few occurences of leading spaces before tabs in a couple of > > > Kconfig files. Remove them by running the following command: > > > > > > $ find . -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' > > > > > > Signed-off-by: Juerg Haefliger > > > --- > > > arch/arm/mach-omap1/Kconfig | 12 ++++++------ > > > arch/arm/mach-vt8500/Kconfig | 6 +++--- > > > arch/arm/mm/Kconfig | 10 +++++----- > > > drivers/char/hw_random/Kconfig | 8 ++++---- > > > drivers/net/usb/Kconfig | 10 +++++----- > > > drivers/net/wan/Kconfig | 4 ++-- > > > drivers/scsi/Kconfig | 2 +- > > > drivers/uio/Kconfig | 2 +- > > > drivers/video/backlight/Kconfig | 10 +++++----- > > > drivers/virtio/Kconfig | 2 +- > > > drivers/w1/masters/Kconfig | 6 +++--- > > > fs/proc/Kconfig | 4 ++-- > > > init/Kconfig | 2 +- > > > net/netfilter/Kconfig | 2 +- > > > net/netfilter/ipvs/Kconfig | 2 +- > > > 15 files changed, 41 insertions(+), 41 deletions(-) > > > > Please break this up into one patch per subsystem and resend to the > > proper maintainers that way. > > Hmm... How is my patch different from other treewide Kconfig cleanup > patches like: > a7f7f6248d97 ("treewide: replace '---help---' in Kconfig files with 'help'") > 8636a1f9677d ("treewide: surround Kconfig file paths with double quotes") > 83fc61a563cb ("treewide: Fix typos in Kconfig") > 769a12a9c760 ("treewide: Kconfig: fix wording / spelling") > f54619f28fb6 ("treewide: Fix typos in Kconfig") Ok, I'll just ignore this and not try to suggest a way for you to get your change accepted... greg k-h From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg KH Subject: Re: [PATCH] treewide: Remove leading spaces in Kconfig files Date: Mon, 17 May 2021 10:17:38 +0200 Message-ID: References: <20210516132209.59229-1-juergh@canonical.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1621239459; bh=BZxAEIkbSW7MbE/cKpN6ELnrkkO5GDgcmYWBCq1E9oE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xe+a+SfspvvC4YFLbvfFGou5Jh4ZaOJhNkVXbtGzQzDaw9YtnD2k5/AYJRH37GLz1 HarCPEyiCvtPLqqvURKmUeKluy77qdfGcIrJi/isWCrMZQ6A5QP/7rtzd2dmdK2J0A 3SHQ8E4iKKDOiX1B7oZK1lgB1PjMHYvnVe3bZMP0= Content-Disposition: inline In-Reply-To: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: virtualization-bounces@lists.linux-foundation.org Sender: "Virtualization" To: Juerg Haefliger Cc: linux-fbdev@vger.kernel.org, mst@redhat.com, tony@atomide.com, dri-devel@lists.freedesktop.org, virtualization@lists.linux-foundation.org, zbr@ioremap.net, Lee Jones , Daniel Thompson , linux-scsi@vger.kernel.org, aaro.koskinen@iki.fi, Juerg Haefliger , kadlec@netfilter.org, lvs-devel@vger.kernel.org, ja@ssi.bg, coreteam@netfilter.org, kuba@kernel.org, pablo@netfilter.org, jejb@linux.ibm.com, horms@verge.net.au, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, martin.petersen@oracle.com, jingoohan1@gmail.com, linux-usb@vger.kernel.org, fw@strlen.de, LKML , linux@prisktech.co.nz, netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org, netdev , linux-fsdevel@vger.kernel.org, David Miller On Mon, May 17, 2021 at 10:07:43AM +0200, Juerg Haefliger wrote: > On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > > There are a few occurences of leading spaces before tabs in a couple of > > > Kconfig files. Remove them by running the following command: > > > > > > $ find . -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' > > > > > > Signed-off-by: Juerg Haefliger > > > --- > > > arch/arm/mach-omap1/Kconfig | 12 ++++++------ > > > arch/arm/mach-vt8500/Kconfig | 6 +++--- > > > arch/arm/mm/Kconfig | 10 +++++----- > > > drivers/char/hw_random/Kconfig | 8 ++++---- > > > drivers/net/usb/Kconfig | 10 +++++----- > > > drivers/net/wan/Kconfig | 4 ++-- > > > drivers/scsi/Kconfig | 2 +- > > > drivers/uio/Kconfig | 2 +- > > > drivers/video/backlight/Kconfig | 10 +++++----- > > > drivers/virtio/Kconfig | 2 +- > > > drivers/w1/masters/Kconfig | 6 +++--- > > > fs/proc/Kconfig | 4 ++-- > > > init/Kconfig | 2 +- > > > net/netfilter/Kconfig | 2 +- > > > net/netfilter/ipvs/Kconfig | 2 +- > > > 15 files changed, 41 insertions(+), 41 deletions(-) > > > > Please break this up into one patch per subsystem and resend to the > > proper maintainers that way. > > Hmm... How is my patch different from other treewide Kconfig cleanup > patches like: > a7f7f6248d97 ("treewide: replace '---help---' in Kconfig files with 'help'") > 8636a1f9677d ("treewide: surround Kconfig file paths with double quotes") > 83fc61a563cb ("treewide: Fix typos in Kconfig") > 769a12a9c760 ("treewide: Kconfig: fix wording / spelling") > f54619f28fb6 ("treewide: Fix typos in Kconfig") Ok, I'll just ignore this and not try to suggest a way for you to get your change accepted... greg k-h