summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPatrice Chotard <[email protected]>2026-01-16 19:57:25 +0100
committerPatrice Chotard <[email protected]>2026-01-29 10:47:57 +0100
commit2bafb6e61b1d77ea39962f9762bf59711d60703c (patch)
tree10be29a2a6188b5de4fe02b314e58ebdcc6274ac /drivers
parentd67c721ec5397e103faef781c146bdaa328e8200 (diff)
clk: stm32mp13: Reorder include files
Reorder include following rules available here : https://docs.u-boot.org/en/latest/develop/codingstyle.html#include-files Reviewed-by: Patrick Delaunay <[email protected]> Signed-off-by: Patrice Chotard <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/stm32/clk-stm32mp13.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/drivers/clk/stm32/clk-stm32mp13.c b/drivers/clk/stm32/clk-stm32mp13.c
index b4d0890f902..18e9ab364b4 100644
--- a/drivers/clk/stm32/clk-stm32mp13.c
+++ b/drivers/clk/stm32/clk-stm32mp13.c
@@ -6,27 +6,25 @@
#define LOG_CATEGORY UCLASS_CLK
#include <clk-uclass.h>
-#include <dm.h>
-#include <log.h>
-#include <asm/io.h>
-#include <dt-bindings/clock/stm32mp13-clks.h>
-#include <linux/clk-provider.h>
-#include <dt-bindings/clock/stm32mp13-clksrc.h>
-#include <asm/arch/sys_proto.h>
-#include <asm/global_data.h>
-#include <clk-uclass.h>
#include <div64.h>
-#include <dm/device_compat.h>
+#include <dm.h>
#include <init.h>
-#include <linux/bitops.h>
-#include <linux/io.h>
-#include <linux/iopoll.h>
+#include <log.h>
#include <regmap.h>
#include <spl.h>
#include <syscon.h>
#include <time.h>
#include <vsprintf.h>
+#include <asm/io.h>
+#include <asm/global_data.h>
#include <asm/arch/sys_proto.h>
+#include <dm/device_compat.h>
+#include <dt-bindings/clock/stm32mp13-clks.h>
+#include <dt-bindings/clock/stm32mp13-clksrc.h>
+#include <linux/bitops.h>
+#include <linux/clk-provider.h>
+#include <linux/io.h>
+#include <linux/iopoll.h>
#include "clk-stm32-core.h"
#include "stm32mp13_rcc.h"