linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] drm/amd: Fix Kconfig indentation
@ 2019-10-07 17:33 Krzysztof Kozlowski
  2019-10-07 18:54 ` Alex Deucher
  0 siblings, 1 reply; 2+ messages in thread
From: Krzysztof Kozlowski @ 2019-10-07 17:33 UTC (permalink / raw)
  To: Maarten Lankhorst, Maxime Ripard, Sean Paul, David Airlie,
	Daniel Vetter, Harry Wentland, Leo Li, Alex Deucher,
	Christian König, David (ChunMing) Zhou, dri-devel,
	linux-kernel, amd-gfx
  Cc: Krzysztof Kozlowski

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 <krzk@kernel.org>

---

Changes since v2:
1. Split AMD and i915 to separate patches.
---
 drivers/gpu/drm/Kconfig             |  4 ++--
 drivers/gpu/drm/amd/display/Kconfig | 32 ++++++++++++++---------------
 2 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
index 108e1b7f4564..7cb6e4eb99e8 100644
--- a/drivers/gpu/drm/Kconfig
+++ b/drivers/gpu/drm/Kconfig
@@ -226,9 +226,9 @@ config DRM_AMDGPU
 	tristate "AMD GPU"
 	depends on DRM && PCI && MMU
 	select FW_LOADER
-        select DRM_KMS_HELPER
+	select DRM_KMS_HELPER
 	select DRM_SCHED
-        select DRM_TTM
+	select DRM_TTM
 	select POWER_SUPPLY
 	select HWMON
 	select BACKLIGHT_CLASS_DEVICE
diff --git a/drivers/gpu/drm/amd/display/Kconfig b/drivers/gpu/drm/amd/display/Kconfig
index 1bbe762ee6ba..313183b80032 100644
--- a/drivers/gpu/drm/amd/display/Kconfig
+++ b/drivers/gpu/drm/amd/display/Kconfig
@@ -23,16 +23,16 @@ config DRM_AMD_DC_DCN2_0
 	depends on DRM_AMD_DC && X86
 	depends on DRM_AMD_DC_DCN1_0
 	help
-	    Choose this option if you want to have
-	    Navi support for display engine
+	  Choose this option if you want to have
+	  Navi support for display engine
 
 config DRM_AMD_DC_DCN2_1
-        bool "DCN 2.1 family"
-        depends on DRM_AMD_DC && X86
-        depends on DRM_AMD_DC_DCN2_0
-        help
-            Choose this option if you want to have
-            Renoir support for display engine
+	bool "DCN 2.1 family"
+	depends on DRM_AMD_DC && X86
+	depends on DRM_AMD_DC_DCN2_0
+	help
+	  Choose this option if you want to have
+	  Renoir support for display engine
 
 config DRM_AMD_DC_DSC_SUPPORT
 	bool "DSC support"
@@ -41,16 +41,16 @@ config DRM_AMD_DC_DSC_SUPPORT
 	depends on DRM_AMD_DC_DCN1_0
 	depends on DRM_AMD_DC_DCN2_0
 	help
-	    Choose this option if you want to have
-	    Dynamic Stream Compression support
+	  Choose this option if you want to have
+	  Dynamic Stream Compression support
 
 config DRM_AMD_DC_HDCP
-        bool "Enable HDCP support in DC"
-        depends on DRM_AMD_DC
-        help
-         Choose this option
-         if you want to support
-         HDCP authentication
+	bool "Enable HDCP support in DC"
+	depends on DRM_AMD_DC
+	help
+	 Choose this option
+	 if you want to support
+	 HDCP authentication
 
 config DEBUG_KERNEL_DC
 	bool "Enable kgdb break in DC"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v3] drm/amd: Fix Kconfig indentation
  2019-10-07 17:33 [PATCH v3] drm/amd: Fix Kconfig indentation Krzysztof Kozlowski
@ 2019-10-07 18:54 ` Alex Deucher
  0 siblings, 0 replies; 2+ messages in thread
From: Alex Deucher @ 2019-10-07 18:54 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Maarten Lankhorst, Maxime Ripard, Sean Paul, David Airlie,
	Daniel Vetter, Harry Wentland, Leo Li, Alex Deucher,
	Christian König, David (ChunMing) Zhou,
	Maling list - DRI developers, LKML, amd-gfx list

On Mon, Oct 7, 2019 at 1:33 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> 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 <krzk@kernel.org>

Applied.  Thanks!

Alex

>
> ---
>
> Changes since v2:
> 1. Split AMD and i915 to separate patches.
> ---
>  drivers/gpu/drm/Kconfig             |  4 ++--
>  drivers/gpu/drm/amd/display/Kconfig | 32 ++++++++++++++---------------
>  2 files changed, 18 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
> index 108e1b7f4564..7cb6e4eb99e8 100644
> --- a/drivers/gpu/drm/Kconfig
> +++ b/drivers/gpu/drm/Kconfig
> @@ -226,9 +226,9 @@ config DRM_AMDGPU
>         tristate "AMD GPU"
>         depends on DRM && PCI && MMU
>         select FW_LOADER
> -        select DRM_KMS_HELPER
> +       select DRM_KMS_HELPER
>         select DRM_SCHED
> -        select DRM_TTM
> +       select DRM_TTM
>         select POWER_SUPPLY
>         select HWMON
>         select BACKLIGHT_CLASS_DEVICE
> diff --git a/drivers/gpu/drm/amd/display/Kconfig b/drivers/gpu/drm/amd/display/Kconfig
> index 1bbe762ee6ba..313183b80032 100644
> --- a/drivers/gpu/drm/amd/display/Kconfig
> +++ b/drivers/gpu/drm/amd/display/Kconfig
> @@ -23,16 +23,16 @@ config DRM_AMD_DC_DCN2_0
>         depends on DRM_AMD_DC && X86
>         depends on DRM_AMD_DC_DCN1_0
>         help
> -           Choose this option if you want to have
> -           Navi support for display engine
> +         Choose this option if you want to have
> +         Navi support for display engine
>
>  config DRM_AMD_DC_DCN2_1
> -        bool "DCN 2.1 family"
> -        depends on DRM_AMD_DC && X86
> -        depends on DRM_AMD_DC_DCN2_0
> -        help
> -            Choose this option if you want to have
> -            Renoir support for display engine
> +       bool "DCN 2.1 family"
> +       depends on DRM_AMD_DC && X86
> +       depends on DRM_AMD_DC_DCN2_0
> +       help
> +         Choose this option if you want to have
> +         Renoir support for display engine
>
>  config DRM_AMD_DC_DSC_SUPPORT
>         bool "DSC support"
> @@ -41,16 +41,16 @@ config DRM_AMD_DC_DSC_SUPPORT
>         depends on DRM_AMD_DC_DCN1_0
>         depends on DRM_AMD_DC_DCN2_0
>         help
> -           Choose this option if you want to have
> -           Dynamic Stream Compression support
> +         Choose this option if you want to have
> +         Dynamic Stream Compression support
>
>  config DRM_AMD_DC_HDCP
> -        bool "Enable HDCP support in DC"
> -        depends on DRM_AMD_DC
> -        help
> -         Choose this option
> -         if you want to support
> -         HDCP authentication
> +       bool "Enable HDCP support in DC"
> +       depends on DRM_AMD_DC
> +       help
> +        Choose this option
> +        if you want to support
> +        HDCP authentication
>
>  config DEBUG_KERNEL_DC
>         bool "Enable kgdb break in DC"
> --
> 2.17.1
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-10-07 18:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-07 17:33 [PATCH v3] drm/amd: Fix Kconfig indentation Krzysztof Kozlowski
2019-10-07 18:54 ` Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).