
Sort include files in accordance to u-boot coding style.
Signed-off-by: Tomas Melin tomas.melin@vaisala.com --- common/splash_source.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/common/splash_source.c b/common/splash_source.c index 9ca523d..4115730 100644 --- a/common/splash_source.c +++ b/common/splash_source.c @@ -7,17 +7,17 @@ */
#include <common.h> -#include <nand.h> -#include <errno.h> -#include <splash.h> -#include <spi_flash.h> -#include <spi.h> -#include <usb.h> -#include <sata.h> #include <bmp_layout.h> -#include <fs.h> +#include <errno.h> #include <fdt_support.h> +#include <fs.h> #include <image.h> +#include <nand.h> +#include <sata.h> +#include <spi.h> +#include <spi_flash.h> +#include <splash.h> +#include <usb.h>
DECLARE_GLOBAL_DATA_PTR;