aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYing-Chun Liu (PaulLiu) <paulliu@debian.org>2015-11-30 20:57:08 +0800
committerYing-Chun Liu (PaulLiu) <paulliu@debian.org>2015-11-30 20:57:08 +0800
commitea1221b988efcc75ad3a9ea38f2d384b28b2bef1 (patch)
tree534576b2f16d0c70334f3da39d8f92c09fbe1d78
parent323dd10868336e2fa7e54929823496d65ffb09cd (diff)
Fix FTBFS for gcc-5.
Modify the header inclusion. Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.org>
-rw-r--r--drivers/mmc/owl_mmc.c2
-rw-r--r--drivers/mmc/owl_mmc.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mmc/owl_mmc.c b/drivers/mmc/owl_mmc.c
index f1061005ee..572a2a9f4d 100644
--- a/drivers/mmc/owl_mmc.c
+++ b/drivers/mmc/owl_mmc.c
@@ -17,7 +17,7 @@
#include <asm/io.h>
#include <asm/byteorder.h>
#include <asm/unaligned.h>
-#include <owl_mmc.h>
+#include "owl_mmc.h"
#include <asm/arch/periph.h>
#include <asm/arch/pinmux.h>
#include <asm/arch/clk.h>
diff --git a/drivers/mmc/owl_mmc.h b/drivers/mmc/owl_mmc.h
index d16582142f..80ba662de9 100644
--- a/drivers/mmc/owl_mmc.h
+++ b/drivers/mmc/owl_mmc.h
@@ -2,9 +2,9 @@
#define _OWL_MMC_H_
#if defined(CONFIG_S900)
-#include <owl_mmc_s900.h>
+#include "owl_mmc_s900.h"
#elif defined(CONFIG_S700)
-#include <owl_mmc_s700.h>
+#include "owl_mmc_s700.h"
#else
#error Unknown SoC type
#endif