driverdev-devel.linuxdriverproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] staging: fbtft: Fix Kconfig indentation
@ 2019-11-20 13:39 Krzysztof Kozlowski
  2019-11-20 16:41 ` Daniel Vetter
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2019-11-20 13:39 UTC (permalink / raw)
  To: linux-kernel
  Cc: devel, Greg Kroah-Hartman, linux-fbdev, dri-devel, 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>
---
 drivers/staging/fbtft/Kconfig | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/fbtft/Kconfig b/drivers/staging/fbtft/Kconfig
index d994aea84b21..19d9d88e9150 100644
--- a/drivers/staging/fbtft/Kconfig
+++ b/drivers/staging/fbtft/Kconfig
@@ -95,8 +95,8 @@ config FB_TFT_PCD8544
 	  Generic Framebuffer support for PCD8544
 
 config FB_TFT_RA8875
-        tristate "FB driver for the RA8875 LCD Controller"
-        depends on FB_TFT
+	tristate "FB driver for the RA8875 LCD Controller"
+	depends on FB_TFT
 	help
 	  Generic Framebuffer support for RA8875
 
@@ -132,10 +132,10 @@ config FB_TFT_SSD1289
 	  Framebuffer support for SSD1289
 
 config FB_TFT_SSD1305
-        tristate "FB driver for the SSD1305 OLED Controller"
-        depends on FB_TFT
-        help
-          Framebuffer support for SSD1305
+	tristate "FB driver for the SSD1305 OLED Controller"
+	depends on FB_TFT
+	help
+	  Framebuffer support for SSD1305
 
 config FB_TFT_SSD1306
 	tristate "FB driver for the SSD1306 OLED Controller"
-- 
2.17.1

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

* Re: [PATCH] staging: fbtft: Fix Kconfig indentation
  2019-11-20 13:39 [PATCH] staging: fbtft: Fix Kconfig indentation Krzysztof Kozlowski
@ 2019-11-20 16:41 ` Daniel Vetter
  2019-11-20 16:55   ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Vetter @ 2019-11-20 16:41 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: devel, Greg Kroah-Hartman, linux-fbdev, linux-kernel, dri-devel

On Wed, Nov 20, 2019 at 09:39:11PM +0800, Krzysztof Kozlowski 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>

Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>

I expect Greg will pick this up.
-Daniel

> ---
>  drivers/staging/fbtft/Kconfig | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/staging/fbtft/Kconfig b/drivers/staging/fbtft/Kconfig
> index d994aea84b21..19d9d88e9150 100644
> --- a/drivers/staging/fbtft/Kconfig
> +++ b/drivers/staging/fbtft/Kconfig
> @@ -95,8 +95,8 @@ config FB_TFT_PCD8544
>  	  Generic Framebuffer support for PCD8544
>  
>  config FB_TFT_RA8875
> -        tristate "FB driver for the RA8875 LCD Controller"
> -        depends on FB_TFT
> +	tristate "FB driver for the RA8875 LCD Controller"
> +	depends on FB_TFT
>  	help
>  	  Generic Framebuffer support for RA8875
>  
> @@ -132,10 +132,10 @@ config FB_TFT_SSD1289
>  	  Framebuffer support for SSD1289
>  
>  config FB_TFT_SSD1305
> -        tristate "FB driver for the SSD1305 OLED Controller"
> -        depends on FB_TFT
> -        help
> -          Framebuffer support for SSD1305
> +	tristate "FB driver for the SSD1305 OLED Controller"
> +	depends on FB_TFT
> +	help
> +	  Framebuffer support for SSD1305
>  
>  config FB_TFT_SSD1306
>  	tristate "FB driver for the SSD1306 OLED Controller"
> -- 
> 2.17.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

* Re: [PATCH] staging: fbtft: Fix Kconfig indentation
  2019-11-20 16:41 ` Daniel Vetter
@ 2019-11-20 16:55   ` Greg Kroah-Hartman
  0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2019-11-20 16:55 UTC (permalink / raw)
  To: Krzysztof Kozlowski, linux-kernel, devel, linux-fbdev, dri-devel

On Wed, Nov 20, 2019 at 05:41:55PM +0100, Daniel Vetter wrote:
> On Wed, Nov 20, 2019 at 09:39:11PM +0800, Krzysztof Kozlowski 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>
> 
> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> 
> I expect Greg will pick this up.

Already picked up :)

thanks for the review,

greg k-h
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

end of thread, other threads:[~2019-11-20 16:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-20 13:39 [PATCH] staging: fbtft: Fix Kconfig indentation Krzysztof Kozlowski
2019-11-20 16:41 ` Daniel Vetter
2019-11-20 16:55   ` Greg Kroah-Hartman

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).