diff options
Diffstat (limited to 'src/soc/samsung/exynos5250/spi.c')
-rw-r--r-- | src/soc/samsung/exynos5250/spi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/samsung/exynos5250/spi.c b/src/soc/samsung/exynos5250/spi.c index 33ec6984db..33a8c740f7 100644 --- a/src/soc/samsung/exynos5250/spi.c +++ b/src/soc/samsung/exynos5250/spi.c @@ -18,13 +18,13 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <assert.h> -#include <stdlib.h> #include <arch/io.h> +#include <assert.h> #include <console/console.h> -#include "clk.h" -#include "gpio.h" -#include "spi.h" +#include <soc/clk.h> +#include <soc/gpio.h> +#include <soc/spi.h> +#include <stdlib.h> #if defined(CONFIG_DEBUG_SPI) && CONFIG_DEBUG_SPI # define DEBUG_SPI(x,...) printk(BIOS_DEBUG, "EXYNOS_SPI: " x) |