diff options
author | Marcel Ziswiler <marcel@ziswiler.com> | 2015-08-16 04:16:27 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-24 20:30:37 +0200 |
commit | 54a5cf81c491e4c4dfc2acf77daf2500f6cc8546 (patch) | |
tree | 322241effffdb70e9716c7cd2d3e601a7842b4eb /drivers/mmc | |
parent | 67b855fe54730c16702dda0a5b2d53ab6b01500f (diff) | |
download | u-boot-imx-54a5cf81c491e4c4dfc2acf77daf2500f6cc8546.zip u-boot-imx-54a5cf81c491e4c4dfc2acf77daf2500f6cc8546.tar.gz u-boot-imx-54a5cf81c491e4c4dfc2acf77daf2500f6cc8546.tar.bz2 |
arm: pxa: mmc: clean-up include file order
Cleaning up order of include files by sorting them alphabetically
keeping in mind to leave common.h on top.
Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/pxa_mmc_gen.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/mmc/pxa_mmc_gen.c b/drivers/mmc/pxa_mmc_gen.c index 25ab0b1..19ae81d 100644 --- a/drivers/mmc/pxa_mmc_gen.c +++ b/drivers/mmc/pxa_mmc_gen.c @@ -6,15 +6,13 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include <config.h> #include <common.h> -#include <malloc.h> - -#include <mmc.h> -#include <asm/errno.h> #include <asm/arch/hardware.h> #include <asm/arch/regs-mmc.h> +#include <asm/errno.h> #include <asm/io.h> +#include <malloc.h> +#include <mmc.h> /* PXAMMC Generic default config for various CPUs */ #if defined(CONFIG_CPU_PXA25X) |