public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] spi: Ensure that CS line is in non-active state after setup
@ 2015-03-06 15:45 Ivan T. Ivanov
  2015-03-08 20:01 ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Ivan T. Ivanov @ 2015-03-06 15:45 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-spi, linux-kernel, linux-arm-msm

When drivers didn't provide setup() method, SPI core should ensure
that CS line is driven in non-active state after spi_setup().

Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
---
 drivers/spi/spi.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index c64a3e5..bfba2d9 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -1895,6 +1895,8 @@ int spi_setup(struct spi_device *spi)

 	if (spi->master->setup)
 		status = spi->master->setup(spi);
+	else
+		spi_set_cs(spi, false);

 	dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n",
 			(int) (spi->mode & (SPI_CPOL | SPI_CPHA)),
--
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-03-09 12:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-06 15:45 [RFC PATCH] spi: Ensure that CS line is in non-active state after setup Ivan T. Ivanov
2015-03-08 20:01 ` Mark Brown
2015-03-09  7:11   ` Ivan T. Ivanov
2015-03-09 12:11     ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox