From patchwork Wed Nov 20 13:42:16 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 11253937 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 8B68C6C1 for ; Wed, 20 Nov 2019 13:42:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6D15722529 for ; Wed, 20 Nov 2019 13:42:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257346; bh=+eCAHDWvaNuOH0t5py/dwIIAgOEWzjEuW1S3XNVtgTo=; h=From:To:Cc:Subject:Date:List-ID:From; b=a7iFK+S7gjFPo7jqIiWJen9OHA76R7EXZ/FdyGRdQqHaqrzepSSSO6Y4FJL2HxZ9n STBgCvItjvrbCyAoPWeR8TRo5QOLJVZ8eIY2JC33S6dypywqonWeA0xFIPWguY8uBy KgSZ/uUAi+JIRlUjtpQzBxjDSkw1b3CQm5HeKwtA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731400AbfKTNmV (ORCPT ); Wed, 20 Nov 2019 08:42:21 -0500 Received: from mail.kernel.org ([198.145.29.99]:50098 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730507AbfKTNmV (ORCPT ); Wed, 20 Nov 2019 08:42:21 -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 5B5DE224FA; Wed, 20 Nov 2019 13:42:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574257340; bh=+eCAHDWvaNuOH0t5py/dwIIAgOEWzjEuW1S3XNVtgTo=; h=From:To:Cc:Subject:Date:From; b=wLfaioBxhp59D+I7bod/1U5No5ftRjkZLfniIM9UVv7TlwYDaQOONXkLXRzMnSrfM 42vf4ZjcwgwPnM2iI9xsLqyc0F346XPqH2GY+AqYLl2IJFf1bIDtEZrRr2XdbA9ku5 7Ifn5Ycp0T5mrfbaq/4bj61Joi6rfV0LwlP6iGgE= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski , MyungJoo Ham , Kyungmin Park , Chanwoo Choi , linux-pm@vger.kernel.org Subject: [PATCH] devfreq: Fix Kconfig indentation Date: Wed, 20 Nov 2019 21:42:16 +0800 Message-Id: <20191120134216.15713-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@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/devfreq/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/devfreq/Kconfig b/drivers/devfreq/Kconfig index 066e6c4efaa2..59027d7ddf2a 100644 --- a/drivers/devfreq/Kconfig +++ b/drivers/devfreq/Kconfig @@ -119,9 +119,9 @@ config ARM_RK3399_DMC_DEVFREQ select DEVFREQ_GOV_SIMPLE_ONDEMAND select PM_DEVFREQ_EVENT help - This adds the DEVFREQ driver for the RK3399 DMC(Dynamic Memory Controller). - It sets the frequency for the memory controller and reads the usage counts - from hardware. + This adds the DEVFREQ driver for the RK3399 DMC(Dynamic Memory Controller). + It sets the frequency for the memory controller and reads the usage counts + from hardware. source "drivers/devfreq/event/Kconfig"