[U-Boot] [PATCH] spi: sh_qspi: Replace CONFIG_DM_SPI with CONFIG_IS_ENABLED(DM_SPI)
Marek Vasut
marek.vasut at gmail.com
Tue Feb 19 05:07:36 UTC 2019
Perform the replacement to allow platforms use non-DM SPI flash access
in SPL/TPL. This is thus far needed on platforms with size constraints.
Signed-off-by: Marek Vasut <marek.vasut+renesas at gmail.com>
Cc: Jagan Teki <jagan at openedev.com>
Cc: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
---
drivers/spi/sh_qspi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/spi/sh_qspi.c b/drivers/spi/sh_qspi.c
index 5ae203d8d4..549881f386 100644
--- a/drivers/spi/sh_qspi.c
+++ b/drivers/spi/sh_qspi.c
@@ -222,7 +222,7 @@ static int sh_qspi_xfer_common(struct sh_qspi_slave *ss, unsigned int bitlen,
return ret;
}
-#ifndef CONFIG_DM_SPI
+#if !CONFIG_IS_ENABLED(DM_SPI)
static inline struct sh_qspi_slave *to_sh_qspi(struct spi_slave *slave)
{
return container_of(slave, struct sh_qspi_slave, slave);
--
2.19.2
More information about the U-Boot
mailing list