diff mbox series

[v3,13/21] serial: sh: Sort includes

Message ID 20231016092543.3833-14-paul.barker.ct@bp.renesas.com
State Accepted
Commit ef7ab75676b4199397f6cd5fde8074c144ba5576
Delegated to: Marek Vasut
Headers show
Series Add support for the Renesas RZ/G2L SMARC EVK | expand

Commit Message

Paul Barker Oct. 16, 2023, 9:25 a.m. UTC
Tidy up the existing include list before we add more includes in the
following patch.

Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com>
---
v2->v3:
  * New patch, required to keep the include list in order in the
    following patch.

 drivers/serial/serial_sh.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Comments

Marek Vasut Oct. 16, 2023, 12:57 p.m. UTC | #1
On 10/16/23 11:25, Paul Barker wrote:
> Tidy up the existing include list before we add more includes in the
> following patch.
> 
> Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com>

Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

Thanks!
diff mbox series

Patch

diff --git a/drivers/serial/serial_sh.c b/drivers/serial/serial_sh.c
index 2b650d458e71..6ba3b15ff1f8 100644
--- a/drivers/serial/serial_sh.c
+++ b/drivers/serial/serial_sh.c
@@ -7,16 +7,16 @@ 
  */
 
 #include <common.h>
-#include <errno.h>
-#include <clk.h>
-#include <dm.h>
 #include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/processor.h>
-#include <serial.h>
-#include <linux/compiler.h>
+#include <clk.h>
+#include <dm.h>
 #include <dm/platform_data/serial_sh.h>
+#include <errno.h>
+#include <linux/compiler.h>
 #include <linux/delay.h>
+#include <serial.h>
 #include "serial_sh.h"
 
 DECLARE_GLOBAL_DATA_PTR;