arm: mvebu: turris_mox: sort headers alphabetically
authorMarek Behún <marek.behun@nic.cz>
Wed, 8 Apr 2020 10:02:08 +0000 (12:02 +0200)
committerStefan Roese <sr@denx.de>
Tue, 14 Apr 2020 11:16:42 +0000 (13:16 +0200)
Sort #includes alphabetically, the only exception is common.h, which is
included first in most parts of U-Boot.

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
board/CZ.NIC/turris_mox/turris_mox.c

index cd39b1c01fdb0acbbc72471042b82e063d88d961..5bb53b126025e220d8d1fc5b64510d6971601d59 100644 (file)
@@ -4,19 +4,19 @@
  */
 
 #include <common.h>
-#include <init.h>
 #include <asm/arch/soc.h>
-#include <asm/gpio.h>
 #include <asm/io.h>
-#include <dm.h>
+#include <asm/gpio.h>
 #include <clk.h>
+#include <dm.h>
 #include <env.h>
-#include <spi.h>
-#include <mvebu/comphy.h>
-#include <miiphy.h>
-#include <linux/string.h>
-#include <linux/libfdt.h>
 #include <fdt_support.h>
+#include <init.h>
+#include <linux/libfdt.h>
+#include <linux/string.h>
+#include <miiphy.h>
+#include <mvebu/comphy.h>
+#include <spi.h>
 
 #include "mox_sp.h"