All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged] spi_mpc83xx-add-small-delay-after-asserting-chip-select-line.patch removed from -mm tree
@ 2009-06-22 17:00 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2009-06-22 17:00 UTC (permalink / raw)
  To: avorontsov, benh, david-b, galak, mm-commits


The patch titled
     spi_mpc83xx: add small delay after asserting chip-select line
has been removed from the -mm tree.  Its filename was
     spi_mpc83xx-add-small-delay-after-asserting-chip-select-line.patch

This patch was dropped because it was merged into mainline or a subsystem tree

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: spi_mpc83xx: add small delay after asserting chip-select line
From: Anton Vorontsov <avorontsov@ru.mvista.com>

This is needed for some underlaying GPIO controllers that may be a bit
slow, or if chip-select signal need some time to stabilize.

For what it's worth, we already have the similar delay for chip-select
de-assertion case.

Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Cc: Kumar Gala <galak@gate.crashing.org>
Cc: David Brownell <david-b@pacbell.net>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/spi/spi_mpc83xx.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff -puN drivers/spi/spi_mpc83xx.c~spi_mpc83xx-add-small-delay-after-asserting-chip-select-line drivers/spi/spi_mpc83xx.c
--- a/drivers/spi/spi_mpc83xx.c~spi_mpc83xx-add-small-delay-after-asserting-chip-select-line
+++ a/drivers/spi/spi_mpc83xx.c
@@ -383,8 +383,10 @@ static void mpc83xx_spi_work(struct work
 					break;
 			}
 
-			if (cs_change)
+			if (cs_change) {
 				mpc83xx_spi_chipselect(spi, BITBANG_CS_ACTIVE);
+				ndelay(nsecs);
+			}
 			cs_change = t->cs_change;
 			if (t->len)
 				status = mpc83xx_spi_bufs(spi, t);
_

Patches currently in -mm which might be from avorontsov@ru.mvista.com are

origin.patch
linux-next.patch
usb-mutually-exclusive-port_status.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-06-22 17:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-22 17:00 [merged] spi_mpc83xx-add-small-delay-after-asserting-chip-select-line.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.