The patch titled atmel_spi: fix handling of chipselect after SPI transfer has been removed from the -mm tree. Its filename was atmel_spi-fix-handling-of-chipselect-after-spi-transfer.patch This patch was dropped because it was withdrawn The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: atmel_spi: fix handling of chipselect after SPI transfer From: Michael Heimpold <michael@xxxxxxxxxxx> According to include/linux/spi/spi.h chipselect should stay active after a SPI transfer or after a SPI message unless modified by spi_transfer.cs_change != 0. The current atmel driver passes this field to atmel_spi_msg_done as a parameter with oppositional meaning: "cs_change" -> "stay" (see atmel_spi_interrupt). This patch fixes this behaviour by adapting the called function and its callers. IMHO this solution is better than an one line fix of inverting the function's argument as the meaning of the field remains throughout the hole stack. Signed-off-by: Michael Heimpold <mhei@xxxxxxxxxxx> Cc: Haavard Skinnemoen <hskinnemoen@xxxxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/spi/atmel_spi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/spi/atmel_spi.c~atmel_spi-fix-handling-of-chipselect-after-spi-transfer drivers/spi/atmel_spi.c --- a/drivers/spi/atmel_spi.c~atmel_spi-fix-handling-of-chipselect-after-spi-transfer +++ a/drivers/spi/atmel_spi.c @@ -385,9 +385,9 @@ static void atmel_spi_dma_unmap_xfer(str static void atmel_spi_msg_done(struct spi_master *master, struct atmel_spi *as, - struct spi_message *msg, int status, int stay) + struct spi_message *msg, int status, int cs_change) { - if (!stay || status < 0) + if (cs_change || status < 0) cs_deactivate(as, msg->spi); else as->stay = msg->spi; @@ -482,7 +482,7 @@ atmel_spi_interrupt(int irq, void *dev_i /* Clear any overrun happening while cleaning up */ spi_readl(as, SR); - atmel_spi_msg_done(master, as, msg, -EIO, 0); + atmel_spi_msg_done(master, as, msg, -EIO, 1); } else if (pending & (SPI_BIT(RXBUFF) | SPI_BIT(ENDRX))) { ret = IRQ_HANDLED; _ Patches currently in -mm which might be from michael@xxxxxxxxxxx are atmel_spi-fix-handling-of-chipselect-after-spi-transfer.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html