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 A594AC432C0 for ; Wed, 20 Nov 2019 13:43:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7AD6F22529 for ; Wed, 20 Nov 2019 13:43:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257413; bh=Py4LIxOYIGUpBCC1UaHD/YjPJ7FIC1KP3vrfomorWQ4=; h=From:To:Cc:Subject:Date:List-ID:From; b=P1/aZsD2oCmsKrySJxjyFPHVz1996pZproY+v6GscMt45Q3bDVoIjcZF5Te0Q/74X MtE00WowdH84QeRp1n9HSchSqszz11d5exGXtl2/Gd1n03TLrJ0uBqlWdFJ1uEKzds BSPuhrlm6uL6YwpxrBE3U/fnmw31MWmcavhHUzJw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730677AbfKTNnc (ORCPT ); Wed, 20 Nov 2019 08:43:32 -0500 Received: from mail.kernel.org ([198.145.29.99]:51398 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730358AbfKTNnc (ORCPT ); Wed, 20 Nov 2019 08:43:32 -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 41C8722528; Wed, 20 Nov 2019 13:43:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257411; bh=Py4LIxOYIGUpBCC1UaHD/YjPJ7FIC1KP3vrfomorWQ4=; h=From:To:Cc:Subject:Date:From; b=uZ2j/2yP5YKrzqRAi0SKT0cOMOxFqg18x8GrUXE2shBcd39pZq47f6yVYUchlQN7R W6U8mF5D+RMEmDyCUMcc1owRjIBf9Lngyq7581b0BauJDM8622I+YY0N/45VRPhQPu M4XO2LNN5T0G/2nJqfbdvExXvpscW2ku5clXgpms= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski , Trond Myklebust , Anna Schumaker , linux-nfs@vger.kernel.org Subject: [PATCH] nfs: Fix Kconfig indentation Date: Wed, 20 Nov 2019 21:43:27 +0800 Message-Id: <20191120134327.16582-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@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 --- fs/nfs/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/nfs/Kconfig b/fs/nfs/Kconfig index 295a7a21b774..3edf122b8044 100644 --- a/fs/nfs/Kconfig +++ b/fs/nfs/Kconfig @@ -147,10 +147,10 @@ config NFS_V4_1_MIGRATION default n help This option makes the NFS client advertise to NFSv4.1 servers that - it can support NFSv4 migration. + it can support NFSv4 migration. - The NFSv4.1 pieces of the Linux NFSv4 migration implementation are - still experimental. If you are not an NFSv4 developer, say N here. + The NFSv4.1 pieces of the Linux NFSv4 migration implementation are + still experimental. If you are not an NFSv4 developer, say N here. config NFS_V4_SECURITY_LABEL bool -- 2.17.1