summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2016-03-04 10:22:24 +0800
committerfang hui <hui.fang@nxp.com>2016-11-09 08:25:50 +0800
commit11d79dca619499b3957f87c89688efd7d2150afb (patch)
tree0493fa2b4e5c1c1be0158bcaebf375221eef0a81
parent8d4edd5d83b872947b04bd81658c76181a19bf00 (diff)
downloadu-boot-imx-11d79dca619499b3957f87c89688efd7d2150afb.zip
u-boot-imx-11d79dca619499b3957f87c89688efd7d2150afb.tar.gz
u-boot-imx-11d79dca619499b3957f87c89688efd7d2150afb.tar.bz2
MLK-12492-2 ecspi: Add ecspi fuse module check only for MX6
Need the CONFIG_MX6 for using the mx6_ecspi_fused funtion, otherwise will break build for other platforms like MX7. Signed-off-by: Ye Li <ye.li@nxp.com>
-rw-r--r--drivers/spi/mxc_spi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/spi/mxc_spi.c b/drivers/spi/mxc_spi.c
index 7d84865..04d280f 100644
--- a/drivers/spi/mxc_spi.c
+++ b/drivers/spi/mxc_spi.c
@@ -414,10 +414,12 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
return NULL;
}
+#ifdef CONFIG_MX6
if (mx6_ecspi_fused(spi_bases[bus])) {
printf("ECSPI@0x%lx is fused, disable it\n", spi_bases[bus]);
return NULL;
}
+#endif
mxcs = spi_alloc_slave(struct mxc_spi_slave, bus, cs);
if (!mxcs) {