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=-8.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FAKE_REPLY_C,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 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 7DA5EC432C0 for ; Thu, 21 Nov 2019 21:10:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 40754206CC for ; Thu, 21 Nov 2019 21:10:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574370639; bh=pwT0+cZQ3uscXqyiAY2DeMl3p9vjTJhcjcjs1VsLJVs=; h=Date:From:To:Cc:Subject:In-Reply-To:List-ID:From; b=Cavw4hEeMEIFOFjbRbTE9mVTXRKh7HyTyK2UU8BfvJNQDpslZ3L54iNtc/usjKgnB TIyZF7TPT/q3V+r0sxarZ2dapDDiOu8CqSctx7Lb3wzi/FuE5HwpfJFuSjpAKFVzH9 +cR45PpQxJwZ2odlMevSWui3+o+IkDnXlT+vbgLM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726875AbfKUVKi (ORCPT ); Thu, 21 Nov 2019 16:10:38 -0500 Received: from mail.kernel.org ([198.145.29.99]:36214 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726852AbfKUVKi (ORCPT ); Thu, 21 Nov 2019 16:10:38 -0500 Received: from localhost (unknown [69.71.4.100]) (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 CD4DD2067D; Thu, 21 Nov 2019 21:10:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574370637; bh=pwT0+cZQ3uscXqyiAY2DeMl3p9vjTJhcjcjs1VsLJVs=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=AY9TQZUF4oTTDWoojlqTj4H3H54QzoLh4b+qU9+xvoySRaf3I38A3YIKwt/J49Rya nXdowbvA7XC6t+vY5K+kAoD8cCZmgSfaMhugh/dljaIOdBrgIvX7kCKmvqvFmNKz6W lFkgMVCHGVt13jVSnvJ9cOaVCD43lrE5oDhTBy4I= Date: Thu, 21 Nov 2019 15:10:35 -0600 From: Bjorn Helgaas To: Krzysztof Kozlowski Cc: linux-kernel@vger.kernel.org, Lorenzo Pieralisi , Andrew Murray , linux-pci@vger.kernel.org, Jon Derrick Subject: Re: [PATCH] pci: Fix Kconfig indentation Message-ID: <20191121211035.GA92037@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191120134036.14502-1-krzk@kernel.org> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org [+cc Jon, just FYI, no action required] On Wed, Nov 20, 2019 at 09:40:36PM +0800, Krzysztof Kozlowski wrote: > Adjust indentation from spaces to tab (+optional two spaces) as in > coding style with command like: > $ sed -e 's/^ /\t/' -i */Kconfig > > Signed-off-by: Krzysztof Kozlowski Applied to pci/trivial for v5.5, thanks! I applied the same change to drivers/pci/controller/vmd.c, the only other file in drivers/pci I found with eight leading spaces. > --- > drivers/pci/Kconfig | 24 ++++++++++++------------ > drivers/pci/controller/dwc/Kconfig | 6 +++--- > drivers/pci/hotplug/Kconfig | 2 +- > 3 files changed, 16 insertions(+), 16 deletions(-) > > diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig > index 77c1428cd945..4bef5c2bae9f 100644 > --- a/drivers/pci/Kconfig > +++ b/drivers/pci/Kconfig > @@ -106,14 +106,14 @@ config PCI_PF_STUB > When in doubt, say N. > > config XEN_PCIDEV_FRONTEND > - tristate "Xen PCI Frontend" > - depends on X86 && XEN > - select PCI_XEN > + tristate "Xen PCI Frontend" > + depends on X86 && XEN > + select PCI_XEN > select XEN_XENBUS_FRONTEND > - default y > - help > - The PCI device frontend driver allows the kernel to import arbitrary > - PCI devices from a PCI backend to support PCI driver domains. > + default y > + help > + The PCI device frontend driver allows the kernel to import arbitrary > + PCI devices from a PCI backend to support PCI driver domains. > > config PCI_ATS > bool > @@ -180,12 +180,12 @@ config PCI_LABEL > select NLS > > config PCI_HYPERV > - tristate "Hyper-V PCI Frontend" > - depends on X86_64 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && SYSFS > + tristate "Hyper-V PCI Frontend" > + depends on X86_64 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && SYSFS > select PCI_HYPERV_INTERFACE > - help > - The PCI device frontend driver allows the kernel to import arbitrary > - PCI devices from a PCI backend to support PCI driver domains. > + help > + The PCI device frontend driver allows the kernel to import arbitrary > + PCI devices from a PCI backend to support PCI driver domains. > > source "drivers/pci/hotplug/Kconfig" > source "drivers/pci/controller/Kconfig" > diff --git a/drivers/pci/controller/dwc/Kconfig b/drivers/pci/controller/dwc/Kconfig > index 0ba988b5b5bc..625a031b2193 100644 > --- a/drivers/pci/controller/dwc/Kconfig > +++ b/drivers/pci/controller/dwc/Kconfig > @@ -7,9 +7,9 @@ config PCIE_DW > bool > > config PCIE_DW_HOST > - bool > + bool > depends on PCI_MSI_IRQ_DOMAIN > - select PCIE_DW > + select PCIE_DW > > config PCIE_DW_EP > bool > @@ -224,7 +224,7 @@ config PCIE_HISI_STB > depends on PCI_MSI_IRQ_DOMAIN > select PCIE_DW_HOST > help > - Say Y here if you want PCIe controller support on HiSilicon STB SoCs > + Say Y here if you want PCIe controller support on HiSilicon STB SoCs > > config PCI_MESON > bool "MESON PCIe controller" > diff --git a/drivers/pci/hotplug/Kconfig b/drivers/pci/hotplug/Kconfig > index e7b493c22bf3..32455a79372d 100644 > --- a/drivers/pci/hotplug/Kconfig > +++ b/drivers/pci/hotplug/Kconfig > @@ -83,7 +83,7 @@ config HOTPLUG_PCI_CPCI_ZT5550 > depends on HOTPLUG_PCI_CPCI && X86 > help > Say Y here if you have an Performance Technologies (formerly Intel, > - formerly just Ziatech) Ziatech ZT5550 CompactPCI system card. > + formerly just Ziatech) Ziatech ZT5550 CompactPCI system card. > > To compile this driver as a module, choose M here: the > module will be called cpcihp_zt5550. > -- > 2.17.1 >