diff options
author | Simon Glass <sjg@chromium.org> | 2019-01-21 14:53:31 -0700 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2019-02-01 16:59:13 +0100 |
commit | c35f8e501727df9f3db62294542d08fc3bbf4d41 (patch) | |
tree | 6b247ad7068882fc4d98064472d4bf6635420b72 /arch/arm/mach-rockchip/rk3368-board-spl.c | |
parent | 5328af17742d35d50f64666c63c2824113d6903a (diff) | |
download | u-boot-c35f8e501727df9f3db62294542d08fc3bbf4d41.tar.gz |
rockchip: Tidy up board include-file ordering
These board files have inconsistent #include ordering. Fix them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'arch/arm/mach-rockchip/rk3368-board-spl.c')
-rw-r--r-- | arch/arm/mach-rockchip/rk3368-board-spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/rk3368-board-spl.c b/arch/arm/mach-rockchip/rk3368-board-spl.c index eae8ef15f3..230850ad6c 100644 --- a/arch/arm/mach-rockchip/rk3368-board-spl.c +++ b/arch/arm/mach-rockchip/rk3368-board-spl.c @@ -6,7 +6,6 @@ #include <common.h> #include <debug_uart.h> #include <dm.h> -#include <dm/pinctrl.h> #include <ram.h> #include <spl.h> #include <asm/io.h> @@ -15,6 +14,7 @@ #include <asm/arch/hardware.h> #include <asm/arch/periph.h> #include <asm/arch/timer.h> +#include <dm/pinctrl.h> void board_debug_uart_init(void) { |