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 39A84C432C0 for ; Wed, 20 Nov 2019 13:39:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 02D812252A for ; Wed, 20 Nov 2019 13:39:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257188; bh=sUts0cXMAdfrDXI+3vnyBTJ7WISQ2WDFOrVCG2tEg2M=; h=From:To:Cc:Subject:Date:List-ID:From; b=1yFhYLEFavexdGzn3PE1wI8PWVlTQ3Zi7yOMhBKyN5VkMCnc2VJDrXJAGHE56OYOS AuuJWgMp2Bp31+8VUTMvhs6twk+pptD5EKSPVrLiknnhBOVBfnIiCVbZ83A9bGjF4v HdTxroiY4OIGF7yBTJpBmnUsxLeipif88++sdKo0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731162AbfKTNjq (ORCPT ); Wed, 20 Nov 2019 08:39:46 -0500 Received: from mail.kernel.org ([198.145.29.99]:47510 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728748AbfKTNjo (ORCPT ); Wed, 20 Nov 2019 08:39:44 -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 97F5222506; Wed, 20 Nov 2019 13:39:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257183; bh=sUts0cXMAdfrDXI+3vnyBTJ7WISQ2WDFOrVCG2tEg2M=; h=From:To:Cc:Subject:Date:From; b=relpmhSwilqmYbKwdHb20YfbjA1pbkoimU73eM9vr6yNJO/kUk16a1t+hhVmf3e3P h19joR/n6+AVqnhVbLiBE0rav20o/KXGtOKdCZXgs/WgHhPIfzZ+YYe6xcKrb/t2Qy 6F3uGHm0xqsAxOSHTcJyAmhdGMkH6GTDKmm0YYII= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski , Alessandro Zummo , Alexandre Belloni , linux-rtc@vger.kernel.org Subject: [PATCH] rtc: Fix Kconfig indentation Date: Wed, 20 Nov 2019 21:39:40 +0800 Message-Id: <20191120133940.13881-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/rtc/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index c3c271c7431d..d77515d8382c 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig @@ -1509,9 +1509,9 @@ config RTC_DRV_PXA depends on ARCH_PXA select RTC_DRV_SA1100 help - If you say Y here you will get access to the real time clock - built into your PXA27x or PXA3xx CPU. This RTC is actually 2 RTCs - consisting of an SA1100 compatible RTC and the extended PXA RTC. + If you say Y here you will get access to the real time clock + built into your PXA27x or PXA3xx CPU. This RTC is actually 2 RTCs + consisting of an SA1100 compatible RTC and the extended PXA RTC. This RTC driver uses PXA RTC registers available since pxa27x series (RDxR, RYxR) instead of legacy RCNR, RTAR. -- 2.17.1