aboutsummaryrefslogtreecommitdiff
path: root/drivers/clk/clk-composite.c
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@foss.st.com>2021-11-19 15:12:06 +0100
committerSean Anderson <seanga2@gmail.com>2021-12-15 12:16:16 -0500
commit572c446e98e224555be1ae2add1b49ff1a60ed7a (patch)
tree08b784902961fd687d6e72f88305bc7583428efc /drivers/clk/clk-composite.c
parent9e578f6340ba3f4324cd823872afe6eda39857d2 (diff)
downloadu-boot-572c446e98e224555be1ae2add1b49ff1a60ed7a.zip
u-boot-572c446e98e224555be1ae2add1b49ff1a60ed7a.tar.gz
u-boot-572c446e98e224555be1ae2add1b49ff1a60ed7a.tar.bz2
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/clk-composite.c b/drivers/clk/clk-composite.c
index bb5351e..12288e1 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"