diff options
author | Simon Glass | 2019-12-06 21:42:40 -0700 |
---|---|---|
committer | Bin Meng | 2019-12-15 11:44:22 +0800 |
commit | b47aa26eb91d74fc78a6aa4e57cc2f4641b42e94 (patch) | |
tree | 0c0564c8fad6b3c6268d0e58ba567fce5d333878 /drivers | |
parent | 702b28a163ea8f6b80c9a850e8884a66bd059727 (diff) |
spi: ich: Fix header order
Move the header files into the right order.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/spi/ich.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/ich.c b/drivers/spi/ich.c index 64601445606..eeb4c274b8d 100644 --- a/drivers/spi/ich.c +++ b/drivers/spi/ich.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <div64.h> #include <dm.h> #include <errno.h> #include <malloc.h> @@ -13,9 +14,8 @@ #include <pci.h> #include <pci_ids.h> #include <spi.h> -#include <asm/io.h> #include <spi-mem.h> -#include <div64.h> +#include <asm/io.h> #include "ich.h" |