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-uclass.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-uclass.c')
-rw-r--r-- | drivers/clk/clk-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-uclass.c b/drivers/clk/clk-uclass.c index 493018b33e..f2d2642754 100644 --- a/drivers/clk/clk-uclass.c +++ b/drivers/clk/clk-uclass.c @@ -16,6 +16,7 @@ #include <errno.h> #include <log.h> #include <malloc.h> +#include <asm/global_data.h> #include <dm/device_compat.h> #include <dm/device-internal.h> #include <dm/devres.h> @@ -23,7 +24,6 @@ #include <linux/bug.h> #include <linux/clk-provider.h> #include <linux/err.h> -#include <asm/global_data.h> static inline const struct clk_ops *clk_dev_ops(struct udevice *dev) { |