diff options
author | Simon Glass <sjg@chromium.org> | 2017-07-29 11:35:08 -0600 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-08-17 16:44:17 +0900 |
commit | 0f07df4301528fe51efa10a6559450632ef35ce7 (patch) | |
tree | a4045d39adb410024a21ad9f077afa9cb05bf05c | |
parent | 3e59c30fcfea44add02e98cdc28153ee644491b0 (diff) | |
download | u-boot-0f07df4301528fe51efa10a6559450632ef35ce7.tar.gz |
dm: sata: dw_sata: Sort #include directives
Sort the header file inclusions into the correct order.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/ata/dwc_ahsata.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/ata/dwc_ahsata.c b/drivers/ata/dwc_ahsata.c index 63e7b7d7a1..b6915d217b 100644 --- a/drivers/ata/dwc_ahsata.c +++ b/drivers/ata/dwc_ahsata.c @@ -5,19 +5,18 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include <libata.h> +#include <common.h> #include <ahci.h> #include <fis.h> -#include <sata.h> - -#include <common.h> +#include <libata.h> #include <malloc.h> -#include <linux/ctype.h> -#include <linux/errno.h> +#include <sata.h> #include <asm/io.h> -#include <linux/bitops.h> #include <asm/arch/clock.h> #include <asm/arch/sys_proto.h> +#include <linux/bitops.h> +#include <linux/ctype.h> +#include <linux/errno.h> #include "dwc_ahsata.h" struct sata_port_regs { |