[PATCH] staging: fbtft: sort includes

Manuel Ebner posted 1 patch 1 week, 4 days ago
drivers/staging/fbtft/fb_ili9320.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH] staging: fbtft: sort includes
Posted by Manuel Ebner 1 week, 4 days ago
Sort header files alphabetically.

Signed-off-by: Manuel Ebner <manuelebnerli@mailbox.org>
---
 drivers/staging/fbtft/fb_ili9320.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/fbtft/fb_ili9320.c b/drivers/staging/fbtft/fb_ili9320.c
index 050fc2367..0f98267a7 100644
--- a/drivers/staging/fbtft/fb_ili9320.c
+++ b/drivers/staging/fbtft/fb_ili9320.c
@@ -5,11 +5,11 @@
  * Copyright (C) 2013 Noralf Tronnes
  */
 
-#include <linux/module.h>
-#include <linux/kernel.h>
+#include <linux/delay.h>
 #include <linux/init.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
 #include <linux/spi/spi.h>
-#include <linux/delay.h>
 
 #include "fbtft.h"
 
-- 
2.55.0
Re: [PATCH] staging: fbtft: sort includes
Posted by Greg Kroah-Hartman 1 week, 4 days ago
On Mon, Sep 14, 2026 at 11:07:32AM +0200, Manuel Ebner wrote:
> Sort header files alphabetically.

Why?  You need to describe why something is needed or being done, not
just what you are doing.  Please go re-read the kernel documentation for
how to write a good changelog entry to get more examples.

thanks,

greg k-h