summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorDario Binacchi <dariobin@libero.it>2020-05-02 18:58:31 +0300
committerLukasz Majewski <lukma@denx.de>2020-08-24 12:03:26 +0300
commit76eaa2d0ed655da19fc1ea00cab054e19be33ecc (patch)
tree21a90507b3cf2595c214b924932683c36bc2e580 /drivers
parent7b0830d41f9e0350207ae3f5137ad8c50731374b (diff)
downloadu-boot-76eaa2d0ed655da19fc1ea00cab054e19be33ecc.tar.xz
clk: ccf: mux: change include order
Apply u-boot coding style on include files order. Signed-off-by: Dario Binacchi <dariobin@libero.it>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/clk-mux.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c
index 679d66a85b..69f1e9cc99 100644
--- a/drivers/clk/clk-mux.c
+++ b/drivers/clk/clk-mux.c
@@ -22,16 +22,16 @@
*/
#include <common.h>
-#include <asm/io.h>
-#include <malloc.h>
+#include <clk.h>
#include <clk-uclass.h>
#include <dm/device.h>
#include <dm/devres.h>
#include <linux/bitops.h>
+#include <malloc.h>
+#include <asm/io.h>
#include <linux/clk-provider.h>
-#include <clk.h>
-#include "clk.h"
#include <linux/err.h>
+#include "clk.h"
#define UBOOT_DM_CLK_CCF_MUX "ccf_clk_mux"