diff options
| author | Paul Barker <[email protected]> | 2023-10-16 10:25:35 +0100 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2023-10-17 03:27:42 +0200 |
| commit | ef7ab75676b4199397f6cd5fde8074c144ba5576 (patch) | |
| tree | db308b1bf39e4ce40f5618e4a7b33e0d5ceb70a0 /drivers/serial/serial_sh.c | |
| parent | 21e4ba153f1f803af58f74eaa5b3778197ffceaf (diff) | |
serial: sh: Sort includes
Tidy up the existing include list before we add more includes in the
following patch.
Signed-off-by: Paul Barker <[email protected]>
Reviewed-by: Marek Vasut <[email protected]>
Diffstat (limited to 'drivers/serial/serial_sh.c')
| -rw-r--r-- | drivers/serial/serial_sh.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/serial/serial_sh.c b/drivers/serial/serial_sh.c index 5e543dbf3d5..36263109e6b 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; |
