diff options
author | Ionela Voinescu <ionela.voinescu@imgtec.com> | 2015-06-07 23:22:34 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-06-10 22:21:55 +0200 |
commit | 1d4c305887642759ae89d47804165e534829959c (patch) | |
tree | 918960bce01a911988af834c5950358d0efa8627 /src/soc/imgtec/pistachio/spi.c | |
parent | 11f33e48721d864fc575e4c1c76e69fdb50b9901 (diff) | |
download | coreboot-1d4c305887642759ae89d47804165e534829959c.tar.xz |
pistachio: sort included header files
Place included header files in alphabetical order.
Change-Id: Ice23178d1f07e2cb0178efbc7ce487d54bf3f708
Signed-off-by: Ionela Voinescu <ionela.voinescu@imgtec.com>
Reviewed-on: http://review.coreboot.org/10459
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/imgtec/pistachio/spi.c')
-rw-r--r-- | src/soc/imgtec/pistachio/spi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/imgtec/pistachio/spi.c b/src/soc/imgtec/pistachio/spi.c index 3cae6af79e..f38607cf5b 100644 --- a/src/soc/imgtec/pistachio/spi.c +++ b/src/soc/imgtec/pistachio/spi.c @@ -13,13 +13,13 @@ * GNU General Public License for more details. */ -#include <string.h> -#include <stdlib.h> -#include <timer.h> #include <soc/cpu.h> #include <soc/spi.h> -#include <spi-generic.h> #include <spi_flash.h> +#include <spi-generic.h> +#include <stdlib.h> +#include <string.h> +#include <timer.h> #if !CONFIG_SPI_ATOMIC_SEQUENCING #error "Unsupported SPI driver API" |