diff options
author | Igor Opaniuk <igor.opaniuk@toradex.com> | 2019-06-04 00:05:57 +0300 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2019-06-04 23:22:19 +0200 |
commit | 23816322d5d701bcfd7d5197c77ed6c88d1830f7 (patch) | |
tree | 6d9951377253fc56b01c2e9e5a246df851170d41 /drivers/video/mxsfb.c | |
parent | dcd91a61bf977805d5aa60d0ea112a1c5ffa41b5 (diff) | |
download | u-boot-23816322d5d701bcfd7d5197c77ed6c88d1830f7.tar.gz u-boot-23816322d5d701bcfd7d5197c77ed6c88d1830f7.tar.bz2 u-boot-23816322d5d701bcfd7d5197c77ed6c88d1830f7.zip |
video: mxsfb: reorder includes
Follow alphabetical order of includes, which simplifies detecting duplicate
includes etc.
Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Diffstat (limited to 'drivers/video/mxsfb.c')
-rw-r--r-- | drivers/video/mxsfb.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/video/mxsfb.c b/drivers/video/mxsfb.c index 0f3a10b0f6..059fbf2b05 100644 --- a/drivers/video/mxsfb.c +++ b/drivers/video/mxsfb.c @@ -5,16 +5,15 @@ * Copyright (C) 2011-2013 Marek Vasut <marex@denx.de> */ #include <common.h> +#include <linux/errno.h> #include <malloc.h> #include <video_fb.h> -#include <asm/arch/imx-regs.h> #include <asm/arch/clock.h> +#include <asm/arch/imx-regs.h> #include <asm/arch/sys_proto.h> -#include <linux/errno.h> -#include <asm/io.h> - #include <asm/mach-imx/dma.h> +#include <asm/io.h> #include "videomodes.h" |