aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorFelix Brack <fb@ltec.ch>2017-10-11 17:05:28 +0200
committerJaehoon Chung <jh80.chung@samsung.com>2018-01-12 18:11:03 +0900
commit339d578900edb03b633b3de4dad3da0aea2c1b15 (patch)
tree93e241f32e1380aa5cd6b30b90d2870651192da1 /drivers
parent0e1746acacbb6dcaa0e9205f2712faf9d1e321a0 (diff)
downloadu-boot-339d578900edb03b633b3de4dad3da0aea2c1b15.zip
u-boot-339d578900edb03b633b3de4dad3da0aea2c1b15.tar.gz
u-boot-339d578900edb03b633b3de4dad3da0aea2c1b15.tar.bz2
mmc: sanitize includes for DM i2c
This patch fixes some warnings when building boards that do not define DM_I2C_COMPAT i.e. boards that entirely rely on the new i2c layer. Signed-off-by: Felix Brack <fb@ltec.ch>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/omap_hsmmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c
index efa4389..30443d1 100644
--- a/drivers/mmc/omap_hsmmc.c
+++ b/drivers/mmc/omap_hsmmc.c
@@ -28,9 +28,9 @@
#include <mmc.h>
#include <part.h>
#include <i2c.h>
-#include <twl4030.h>
-#include <twl6030.h>
+#if defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX)
#include <palmas.h>
+#endif
#include <asm/io.h>
#include <asm/arch/mmc_host_def.h>
#if !defined(CONFIG_SOC_KEYSTONE)