diff options
author | Dario Binacchi <dariobin@libero.it> | 2020-05-03 21:27:48 +0200 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2020-05-11 10:16:49 +0530 |
commit | 295ab882d9d281d247c0025c95acbedbae4e7402 (patch) | |
tree | 28ba19f053f355e697519e550de55cc76c98c03e /drivers | |
parent | b76bea12053d12d000fdd886a14038c50b84ad62 (diff) | |
download | u-boot-295ab882d9d281d247c0025c95acbedbae4e7402.tar.gz |
video: omap: change include order
Apply u-boot coding style on include files order as described by the
wiki https://www.denx.de/wiki/U-Boot/CodingStyle.
Signed-off-by: Dario Binacchi <dariobin@libero.it>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/am335x-fb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/am335x-fb.c b/drivers/video/am335x-fb.c index eb5add2a20..0f066df451 100644 --- a/drivers/video/am335x-fb.c +++ b/drivers/video/am335x-fb.c @@ -13,15 +13,15 @@ */ #include <common.h> #include <dm.h> -#include <asm/io.h> +#include <lcd.h> +#include <video.h> +#include <asm/arch/clock.h> #include <asm/arch/hardware.h> #include <asm/arch/omap.h> -#include <asm/arch/clock.h> #include <asm/arch/sys_proto.h> +#include <asm/io.h> #include <asm/utils.h> #include <linux/err.h> -#include <lcd.h> -#include <video.h> #include "am335x-fb.h" #define LCDC_FMAX 200000000 |