From patchwork Thu Nov 21 13:29:14 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 11256221 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 BF4E4112B for ; Thu, 21 Nov 2019 13:29:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 95A9520726 for ; Thu, 21 Nov 2019 13:29:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574342960; bh=182E69orGVAr6uDhiU/Wa8kfY2L4r3LvkNVQrldlYAk=; h=From:To:Cc:Subject:Date:List-ID:From; b=LvgJdTqXYfUyfCXqWTsa6Z3ZLvo+w78hG043mptkkoFrMUl/veuWh+Fo2loluryNM ELkLSfbTu9nNV3DaE4SjKiQ1DI4XjvEgkwSb4XkFa++WVQTRbr+w4xtOSgS2RAQTBu IBDPxiUC7mPvcwm957J9kPLkR5a7OcD/WGq3Yi2A= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726803AbfKUN3T (ORCPT ); Thu, 21 Nov 2019 08:29:19 -0500 Received: from mail.kernel.org ([198.145.29.99]:49554 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727196AbfKUN3T (ORCPT ); Thu, 21 Nov 2019 08:29:19 -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 D45C52070B; Thu, 21 Nov 2019 13:29:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574342958; bh=182E69orGVAr6uDhiU/Wa8kfY2L4r3LvkNVQrldlYAk=; h=From:To:Cc:Subject:Date:From; b=fIC3mT5QdPx0VRaXrx5GuimHdvBlw+y0s12AhH0mfcYE77QLljgpbWykSDfntBCCT nR6M/+jfNk6duL62WMBFCsC6VsvrA81o1niQLD5e/kn5Py3ppaINOQyFR7ipOvN2BG /ifLyLcEESAx/H+a3laaTyk54Dx4371LiH2bk4yY= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski , Felipe Balbi , Greg Kroah-Hartman , linux-usb@vger.kernel.org Subject: [PATCH] usb: dwc3: Fix Kconfig indentation Date: Thu, 21 Nov 2019 21:29:14 +0800 Message-Id: <20191121132914.29368-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@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/usb/dwc3/Kconfig | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig index 0d97e6bfaf36..206caa0ea1c6 100644 --- a/drivers/usb/dwc3/Kconfig +++ b/drivers/usb/dwc3/Kconfig @@ -97,24 +97,24 @@ config USB_DWC3_KEYSTONE Say 'Y' or 'M' here if you have one such device config USB_DWC3_MESON_G12A - tristate "Amlogic Meson G12A Platforms" - depends on OF && COMMON_CLK - depends on ARCH_MESON || COMPILE_TEST - default USB_DWC3 - select USB_ROLE_SWITCH + tristate "Amlogic Meson G12A Platforms" + depends on OF && COMMON_CLK + depends on ARCH_MESON || COMPILE_TEST + default USB_DWC3 + select USB_ROLE_SWITCH select REGMAP_MMIO - help - Support USB2/3 functionality in Amlogic G12A platforms. - Say 'Y' or 'M' if you have one such device. + help + Support USB2/3 functionality in Amlogic G12A platforms. + Say 'Y' or 'M' if you have one such device. config USB_DWC3_OF_SIMPLE - tristate "Generic OF Simple Glue Layer" - depends on OF && COMMON_CLK - default USB_DWC3 - help - Support USB2/3 functionality in simple SoC integrations. - Currently supports Xilinx and Qualcomm DWC USB3 IP. - Say 'Y' or 'M' if you have one such device. + tristate "Generic OF Simple Glue Layer" + depends on OF && COMMON_CLK + default USB_DWC3 + help + Support USB2/3 functionality in simple SoC integrations. + Currently supports Xilinx and Qualcomm DWC USB3 IP. + Say 'Y' or 'M' if you have one such device. config USB_DWC3_ST tristate "STMicroelectronics Platforms"