From nobody Sun May 5 13:26:22 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=kernel.org ARC-Seal: i=1; a=rsa-sha256; t=1574257139; cv=none; d=zoho.com; s=zohoarc; b=kCowV6B/I9ouMZSwG6nu+5NBAsxA3fhqYwnSWRvXOB2i/I75xdepwqGbg8aMozu42RU2uKasfjQjsyz+uTmRtfXAjKcV9MmUWeqSvz0IVt8fElMiyU4qUCtNO8MVQwuI2msGjiEvGoWVLaNTHxQR4OZn3P6Z2zL/ENSBII4KRnw= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1574257139; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=tE4YOpmPsgSLakZXI8u/0tdPATRGppuSUwC/MuTF+rg=; b=Vp9A10Twchbn/Pp/4g1lBW7Fq8dEB89fWR+CwdXq7DQke314GlptsDQvyZyt6XGINh+Qv4SXH6oQpGoO7YdpPufhkf4DvcmsObdrq95+WhQRkzQsq0VRvL5p4KxKNmAQEBclhroerLHBTarGPw3SP5lCl/kIiX7/pzTO+iKcoZI= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=fail; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1574257139268178.8180475152319; Wed, 20 Nov 2019 05:38:59 -0800 (PST) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1iXQBh-0003hG-4U; Wed, 20 Nov 2019 13:38:29 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1iXQBf-0003h3-C5 for xen-devel@lists.xenproject.org; Wed, 20 Nov 2019 13:38:27 +0000 Received: from mail.kernel.org (unknown [198.145.29.99]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 079e5fa4-0b9b-11ea-a313-12813bfff9fa; Wed, 20 Nov 2019 13:38:26 +0000 (UTC) Received: from localhost.localdomain (unknown [118.189.143.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8E2CA2252E; Wed, 20 Nov 2019 13:38:24 +0000 (UTC) X-Inumbo-ID: 079e5fa4-0b9b-11ea-a313-12813bfff9fa DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257106; bh=uTjDaWFJYh6hi5k79CP31dyZfxkghCwHxEwUNKSa3Uk=; h=From:To:Cc:Subject:Date:From; b=iIAWTsICtE2jOMyxoINtE81zTJeetE0xdx7tVc3xTNWkqXBbATs7z0MInC/0/U3XO AvDejgMwdjDzfwjdw9aWX28ZXsFqR0sFGdsUQQMuFIU+qYjDQMx3Rhr+nfJNBvBd8M XxhqOAlxz9A16g1tx2A/oqe5smvPzNnaUDdkylmw= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Date: Wed, 20 Nov 2019 21:38:22 +0800 Message-Id: <20191120133822.12909-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Subject: [Xen-devel] [PATCH] xen: Fix Kconfig indentation X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Juergen Gross , xen-devel@lists.xenproject.org, Boris Ostrovsky , Stefano Stabellini , Krzysztof Kozlowski MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) 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 --- drivers/xen/Kconfig | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig index b71f1ad1013c..cba949c0f8b3 100644 --- a/drivers/xen/Kconfig +++ b/drivers/xen/Kconfig @@ -110,12 +110,12 @@ config XEN_COMPAT_XENFS depends on XENFS default y help - The old xenstore userspace tools expect to find "xenbus" - under /proc/xen, but "xenbus" is now found at the root of the - xenfs filesystem. Selecting this causes the kernel to create - the compatibility mount point /proc/xen if it is running on - a xen platform. - If in doubt, say yes. + The old xenstore userspace tools expect to find "xenbus" + under /proc/xen, but "xenbus" is now found at the root of the + xenfs filesystem. Selecting this causes the kernel to create + the compatibility mount point /proc/xen if it is running on + a xen platform. + If in doubt, say yes. =20 config XEN_SYS_HYPERVISOR bool "Create xen entries under /sys/hypervisor" @@ -123,7 +123,7 @@ config XEN_SYS_HYPERVISOR select SYS_HYPERVISOR default y help - Create entries under /sys/hypervisor describing the Xen + Create entries under /sys/hypervisor describing the Xen hypervisor environment. When running native or in another virtual environment, /sys/hypervisor will still be present, but will have no xen contents. @@ -271,7 +271,7 @@ config XEN_ACPI_PROCESSOR depends on XEN && XEN_DOM0 && X86 && ACPI_PROCESSOR && CPU_FREQ default m help - This ACPI processor uploads Power Management information to the = Xen + This ACPI processor uploads Power Management information to the Xen hypervisor. =20 To do that the driver parses the Power Management data and uploads @@ -280,7 +280,7 @@ config XEN_ACPI_PROCESSOR SMM so that other drivers (such as ACPI cpufreq scaling driver) will not load. =20 - To compile this driver as a module, choose M here: the module wi= ll be + To compile this driver as a module, choose M here: the module will be called xen_acpi_processor If you do not know what to choose, select M here. If the CPUFREQ drivers are built in, select Y here. =20 @@ -313,8 +313,8 @@ config XEN_SYMS depends on X86 && XEN_DOM0 && XENFS default y if KALLSYMS help - Exports hypervisor symbols (along with their types and addresses= ) via - /proc/xen/xensyms file, similar to /proc/kallsyms + Exports hypervisor symbols (along with their types and addresses) via + /proc/xen/xensyms file, similar to /proc/kallsyms =20 config XEN_HAVE_VPMU bool --=20 2.17.1 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel