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 61E8AC432C0 for ; Wed, 20 Nov 2019 13:43:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 36E3D219FA for ; Wed, 20 Nov 2019 13:43:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257430; bh=xeCJqurX4RkNcjf2QeoKUT0jsty4nV+TvM4lmNA6dsQ=; h=From:To:Cc:Subject:Date:List-ID:From; b=hnV8dKVfaS1jF74tBboyRXgWcGiOdbNpjTRLfm3OFf7LvMyn01d+fk3hEwVzuqDyr TW3PasK7AHTXH7Y9zr4YiPfZLVhPYd/2wsbi5N8Syq49hXQMkxx5Wh10b6lkOeagnB y0yWwRYt9OY/nSN0nMSY+2GopS4W4tck00Y25ebY= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730568AbfKTNns (ORCPT ); Wed, 20 Nov 2019 08:43:48 -0500 Received: from mail.kernel.org ([198.145.29.99]:51660 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730153AbfKTNnp (ORCPT ); Wed, 20 Nov 2019 08:43:45 -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 2EC1C22529; Wed, 20 Nov 2019 13:43:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257424; bh=xeCJqurX4RkNcjf2QeoKUT0jsty4nV+TvM4lmNA6dsQ=; h=From:To:Cc:Subject:Date:From; b=mON5RSsTAW1ybEu5VPfT6UvYN5a2pBxmYe/mVEYQgKP0x1IokBg0uh8qwF0+nBtBI MGud1QK/F32uNnl6fEjbzxvKD0D2bhRjMFkZOS/tlutQsNONQ/54J5blh2x8AG+vBU BACD/+kuDFWIr1mV9cqv4rBy9umIpSLAZMRzELQA= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski , Eric Van Hensbergen , Latchesar Ionkov , Dominique Martinet , v9fs-developer@lists.sourceforge.net Subject: [PATCH] 9p: Fix Kconfig indentation Date: Wed, 20 Nov 2019 21:43:40 +0800 Message-Id: <20191120134340.16770-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 --- fs/9p/Kconfig | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/fs/9p/Kconfig b/fs/9p/Kconfig index ac2ec4543fe1..09fd4a185fd2 100644 --- a/fs/9p/Kconfig +++ b/fs/9p/Kconfig @@ -32,13 +32,13 @@ endif config 9P_FS_SECURITY - bool "9P Security Labels" - depends on 9P_FS - help - Security labels support alternative access control models - implemented by security modules like SELinux. This option - enables an extended attribute handler for file security - labels in the 9P filesystem. - - If you are not using a security module that requires using - extended attributes for file security labels, say N. + bool "9P Security Labels" + depends on 9P_FS + help + Security labels support alternative access control models + implemented by security modules like SELinux. This option + enables an extended attribute handler for file security + labels in the 9P filesystem. + + If you are not using a security module that requires using + extended attributes for file security labels, say N. -- 2.17.1