diff options
author | Ye Li <ye.li@nxp.com> | 2016-03-04 10:22:24 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-04 16:00:08 +0800 |
commit | 9433975cef6a5aef3ff4709ebe68ba97f78740f0 (patch) | |
tree | 4d56c0697e09126779bc1ca7da8e5fac09b00464 | |
parent | 8ada91778f7f28dd33b80f515a35d09c1398933c (diff) | |
download | u-boot-imx-9433975cef6a5aef3ff4709ebe68ba97f78740f0.zip u-boot-imx-9433975cef6a5aef3ff4709ebe68ba97f78740f0.tar.gz u-boot-imx-9433975cef6a5aef3ff4709ebe68ba97f78740f0.tar.bz2 |
MLK-12492-2 ecspi: Add ecspi fuse module check only for MX6m6.0.1_1.0.0-ga
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.c | 2 |
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) { |