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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 7CD9FC432C0 for ; Wed, 20 Nov 2019 13:41:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4FA6522529 for ; Wed, 20 Nov 2019 13:41:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257264; bh=7H0hDxFQSuoC/CUw3yrgP4s6eMs211OMo3Zuj/UprCA=; h=From:To:Cc:Subject:Date:List-ID:From; b=lVb1xxYAjOqaXFN7C8Y+h7J7sGeAyNzmv/4IYGaTF6MkthAxkAava6Q6zjZxqYdZz 3/gbf3QzFq8vmwTJsdhbh9NDsEovLUhZY1+hHmBRABQFldzkxD1S1ZJsoFmleWCfBg n1nf01CyF4VzgVIPMwnMizvN7m3TAvbh175siIxs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731252AbfKTNlD (ORCPT ); Wed, 20 Nov 2019 08:41:03 -0500 Received: from mail.kernel.org ([198.145.29.99]:48850 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729146AbfKTNlB (ORCPT ); Wed, 20 Nov 2019 08:41:01 -0500 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 07E9F22506; Wed, 20 Nov 2019 13:40:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257260; bh=7H0hDxFQSuoC/CUw3yrgP4s6eMs211OMo3Zuj/UprCA=; h=From:To:Cc:Subject:Date:From; b=SVmSepDAoZgeE/3T5OFiUPpPT87P8JG+GrWssLQT2vnYdObTUPshiGcpoWm42Hrh6 swIM3HLZ0GATcFkpfVmlkSDkKMnwb/P59r77/4cNJEs6TxTHvOhxUTUSj0b3EUErF7 m/2xGJgGXbvacWpWYxBuv4/nZdoHz/FHtp3JnAPg= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski , Derek Kiernan , Dragan Cvetic , Arnd Bergmann , Greg Kroah-Hartman Subject: [PATCH] misc: Fix Kconfig indentation Date: Wed, 20 Nov 2019 21:40:56 +0800 Message-Id: <20191120134056.14677-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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/misc/Kconfig | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 94b14abb5404..b93757efb058 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -338,14 +338,14 @@ config SENSORS_TSL2550 will be called tsl2550. config SENSORS_BH1770 - tristate "BH1770GLC / SFH7770 combined ALS - Proximity sensor" - depends on I2C - ---help--- - Say Y here if you want to build a driver for BH1770GLC (ROHM) or + tristate "BH1770GLC / SFH7770 combined ALS - Proximity sensor" + depends on I2C + ---help--- + Say Y here if you want to build a driver for BH1770GLC (ROHM) or SFH7770 (Osram) combined ambient light and proximity sensor chip. - To compile this driver as a module, choose M here: the - module will be called bh1770glc. If unsure, say N here. + To compile this driver as a module, choose M here: the + module will be called bh1770glc. If unsure, say N here. config SENSORS_APDS990X tristate "APDS990X combined als and proximity sensors" @@ -450,8 +450,8 @@ config PCI_ENDPOINT_TEST select CRC32 tristate "PCI Endpoint Test driver" ---help--- - Enable this configuration option to enable the host side test driver - for PCI Endpoint. + Enable this configuration option to enable the host side test driver + for PCI Endpoint. config XILINX_SDFEC tristate "Xilinx SDFEC 16" -- 2.17.1