diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-11-19 15:12:06 +0100 |
---|---|---|
committer | Sean Anderson <seanga2@gmail.com> | 2021-12-15 12:16:16 -0500 |
commit | 572c446e98e224555be1ae2add1b49ff1a60ed7a (patch) | |
tree | 08b784902961fd687d6e72f88305bc7583428efc /drivers/clk/clk-composite.c | |
parent | 9e578f6340ba3f4324cd823872afe6eda39857d2 (diff) |
clk: cosmetic: reorder include files
Reorder include files in the U-Boot expected order:
the common.h header should always be first,
followed by other headers in order,
then headers with directories,
then local files.
It is a preliminary step for next patch.
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
Diffstat (limited to 'drivers/clk/clk-composite.c')
-rw-r--r-- | drivers/clk/clk-composite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/clk-composite.c b/drivers/clk/clk-composite.c index bb5351ebc0..12288e10b3 100644 --- a/drivers/clk/clk-composite.c +++ b/drivers/clk/clk-composite.c @@ -5,13 +5,13 @@ */ #include <common.h> -#include <asm/io.h> -#include <malloc.h> +#include <clk.h> #include <clk-uclass.h> +#include <malloc.h> +#include <asm/io.h> #include <dm/device.h> #include <dm/devres.h> #include <linux/clk-provider.h> -#include <clk.h> #include <linux/err.h> #include "clk.h" |