[spi-devel-general] La loi Scellier permet de redu ire fortement vos impots, à decouvrir maintenan t

2010-04-12 Thread Impots 2010 par Objectif Patrimoine
-- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks dur

Re: [spi-devel-general] [PATCH v2 1/3] spi: implemented driver for Cirrus EP93xx SPI controller

2010-04-12 Thread Martin Guy
and - if (espi->tx == 0 && espi->rx == 0) - espi->fifo_level = 0; since it's always created as 0 and is always reset to 0 by the end of a transfer and if you like /* is transfer finished? */ - if (espi->tx == t->len && espi->rx == t->len) { + if

[spi-devel-general] [PATCH] spi: spi_device memory should be released instead of device.

2010-04-12 Thread Roman Tereshonkov
The memory for dev variable is allocated as a part of spi_device structure memory which the dev belongs to. Thus when the memory is released the right pointer is used. Signed-off-by: Roman Tereshonkov --- drivers/spi/spi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a

[spi-devel-general] [PATCH] omap2_mcspi: change default DMA_MIN_BYTES value to 160

2010-04-12 Thread Roman Tereshonkov
The value 160 has been obtained as optimal in testing it for wl1271 which use spi for communication. In some sense this change might also influence on other spi devices connected to omap2_mcspi controller. Signed-off-by: Roman Tereshonkov --- drivers/spi/omap2_mcspi.c |2 +- 1 files changed,