linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] spi/bfin_spi: support for multiples of 8bits with hardware CS
@ 2011-01-11 16:19 Mike Frysinger
       [not found] ` <1294762748-25122-1-git-send-email-vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Mike Frysinger @ 2011-01-11 16:19 UTC (permalink / raw)
  To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	David Brownell, Grant Likely
  Cc: uclinux-dist-devel-ZG0+EudsQA8dtHy/vicBwGD2FQJk+8+b

From: Bob Liu <lliubbo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

We can do multiples of 8bit transfers when using the hardware CS and a
little bit of magic, so make it work.

Signed-off-by: Bob Liu <lliubbo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
---
 drivers/spi/spi_bfin5xx.c |  103 +++++++++++++++++++++++++++++++--------------
 1 files changed, 71 insertions(+), 32 deletions(-)

diff --git a/drivers/spi/spi_bfin5xx.c b/drivers/spi/spi_bfin5xx.c
index 3f22351..e8d68b7 100644
--- a/drivers/spi/spi_bfin5xx.c
+++ b/drivers/spi/spi_bfin5xx.c
@@ -425,6 +425,7 @@ static irqreturn_t bfin_spi_pio_irq_handler(int irq, void *dev_id)
 	struct bfin_spi_slave_data *chip = drv_data->cur_chip;
 	struct spi_message *msg = drv_data->cur_msg;
 	int n_bytes = drv_data->n_bytes;
+	int loop = 0;
 
 	/* wait until transfer finished. */
 	while (!(read_STAT(drv_data) & BIT_STAT_RXS))
@@ -435,10 +436,15 @@ static irqreturn_t bfin_spi_pio_irq_handler(int irq, void *dev_id)
 		/* last read */
 		if (drv_data->rx) {
 			dev_dbg(&drv_data->pdev->dev, "last read\n");
-			if (n_bytes == 2)
-				*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
-			else if (n_bytes == 1)
-				*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
+			if (n_bytes % 2) {
+				u16 *buf = (u16 *)drv_data->rx;
+				for (loop = 0; loop < n_bytes / 2; loop++)
+					*buf++ = read_RDBR(drv_data);
+			} else {
+				u8 *buf = (u8 *)drv_data->rx;
+				for (loop = 0; loop < n_bytes; loop++)
+					*buf++ = read_RDBR(drv_data);
+			}
 			drv_data->rx += n_bytes;
 		}
 
@@ -458,29 +464,53 @@ static irqreturn_t bfin_spi_pio_irq_handler(int irq, void *dev_id)
 	if (drv_data->rx && drv_data->tx) {
 		/* duplex */
 		dev_dbg(&drv_data->pdev->dev, "duplex: write_TDBR\n");
-		if (drv_data->n_bytes == 2) {
-			*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
-			write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
-		} else if (drv_data->n_bytes == 1) {
-			*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
-			write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
+		if (n_bytes % 2) {
+			u16 *buf = (u16 *)drv_data->rx;
+			u16 *buf2 = (u16 *)drv_data->tx;
+			for (loop = 0; loop < n_bytes / 2; loop++) {
+				*buf++ = read_RDBR(drv_data);
+				write_TDBR(drv_data, *buf2++);
+			}
+		} else {
+			u8 *buf = (u8 *)drv_data->rx;
+			u8 *buf2 = (u8 *)drv_data->tx;
+			for (loop = 0; loop < n_bytes; loop++) {
+				*buf++ = read_RDBR(drv_data);
+				write_TDBR(drv_data, *buf2++);
+			}
 		}
 	} else if (drv_data->rx) {
 		/* read */
 		dev_dbg(&drv_data->pdev->dev, "read: write_TDBR\n");
-		if (drv_data->n_bytes == 2)
-			*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
-		else if (drv_data->n_bytes == 1)
-			*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
-		write_TDBR(drv_data, chip->idle_tx_val);
+		if (n_bytes % 2) {
+			u16 *buf = (u16 *)drv_data->rx;
+			for (loop = 0; loop < n_bytes / 2; loop++) {
+				*buf++ = read_RDBR(drv_data);
+				write_TDBR(drv_data, chip->idle_tx_val);
+			}
+		} else {
+			u8 *buf = (u8 *)drv_data->rx;
+			for (loop = 0; loop < n_bytes; loop++) {
+				*buf++ = read_RDBR(drv_data);
+				write_TDBR(drv_data, chip->idle_tx_val);
+			}
+		}
 	} else if (drv_data->tx) {
 		/* write */
 		dev_dbg(&drv_data->pdev->dev, "write: write_TDBR\n");
-		bfin_spi_dummy_read(drv_data);
-		if (drv_data->n_bytes == 2)
-			write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
-		else if (drv_data->n_bytes == 1)
-			write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
+		if (n_bytes % 2) {
+			u16 *buf = (u16 *)drv_data->tx;
+			for (loop = 0; loop < n_bytes / 2; loop++) {
+				read_RDBR(drv_data);
+				write_TDBR(drv_data, *buf++);
+			}
+		} else {
+			u8 *buf = (u8 *)drv_data->tx;
+			for (loop = 0; loop < n_bytes; loop++) {
+				read_RDBR(drv_data);
+				write_TDBR(drv_data, *buf++);
+			}
+		}
 	}
 
 	if (drv_data->tx)
@@ -651,16 +681,16 @@ static void bfin_spi_pump_transfers(unsigned long data)
 
 	/* Bits per word setup */
 	bits_per_word = transfer->bits_per_word ? : message->spi->bits_per_word;
-	if (bits_per_word == 8) {
-		drv_data->n_bytes = 1;
-		drv_data->len = transfer->len;
-		cr_width = 0;
-		drv_data->ops = &bfin_bfin_spi_transfer_ops_u8;
-	} else if (bits_per_word == 16) {
-		drv_data->n_bytes = 2;
+	if ((bits_per_word > 0) && (bits_per_word % 16 == 0)) {
+		drv_data->n_bytes = bits_per_word/8;
 		drv_data->len = (transfer->len) >> 1;
 		cr_width = BIT_CTL_WORDSIZE;
 		drv_data->ops = &bfin_bfin_spi_transfer_ops_u16;
+	} else if ((bits_per_word > 0) && (bits_per_word % 8 == 0)) {
+		drv_data->n_bytes = bits_per_word/8;
+		drv_data->len = transfer->len;
+		cr_width = 0;
+		drv_data->ops = &bfin_bfin_spi_transfer_ops_u8;
 	} else {
 		dev_err(&drv_data->pdev->dev, "transfer: unsupported bits_per_word\n");
 		message->status = -EINVAL;
@@ -815,10 +845,19 @@ static void bfin_spi_pump_transfers(unsigned long data)
 		if (drv_data->tx == NULL)
 			write_TDBR(drv_data, chip->idle_tx_val);
 		else {
-			if (bits_per_word == 8)
-				write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
-			else
-				write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
+			int loop;
+			if (bits_per_word % 16 == 0) {
+				u16 *buf = (u16 *)drv_data->tx;
+				for (loop = 0; loop < bits_per_word / 16;
+						loop++) {
+					write_TDBR(drv_data, *buf++);
+				}
+			} else if (bits_per_word % 8 == 0) {
+				u8 *buf = (u8 *)drv_data->tx;
+				for (loop = 0; loop < bits_per_word / 8; loop++)
+					write_TDBR(drv_data, *buf++);
+			}
+
 			drv_data->tx += drv_data->n_bytes;
 		}
 
@@ -1031,7 +1070,7 @@ static int bfin_spi_setup(struct spi_device *spi)
 		chip->ctl_reg &= bfin_ctl_reg;
 	}
 
-	if (spi->bits_per_word != 8 && spi->bits_per_word != 16) {
+	if (spi->bits_per_word % 8) {
 		dev_err(&spi->dev, "%d bits_per_word is not supported\n",
 				spi->bits_per_word);
 		goto error;
-- 
1.7.4.rc1

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

* [PATCH 2/2] spi/bfin_spi: return immediately after skipping to next transfer
       [not found] ` <1294762748-25122-1-git-send-email-vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
@ 2011-01-11 16:19   ` Mike Frysinger
       [not found]     ` <1294762748-25122-2-git-send-email-vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
  2011-02-15 22:06   ` [PATCH 1/2] spi/bfin_spi: support for multiples of 8bits with hardware CS Grant Likely
  1 sibling, 1 reply; 4+ messages in thread
From: Mike Frysinger @ 2011-01-11 16:19 UTC (permalink / raw)
  To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	David Brownell, Grant Likely
  Cc: uclinux-dist-devel-ZG0+EudsQA8dtHy/vicBwGD2FQJk+8+b

From: Sonic Zhang <sonic.zhang-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>

If there is an error with setting up a transfer, we need to return
immediately rather than trying to continue to process things.  We
already set up the error states for the caller at this point.

Signed-off-by: Sonic Zhang <sonic.zhang-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
Signed-off-by: Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
---
 drivers/spi/spi_bfin5xx.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/spi/spi_bfin5xx.c b/drivers/spi/spi_bfin5xx.c
index e8d68b7..a284624 100644
--- a/drivers/spi/spi_bfin5xx.c
+++ b/drivers/spi/spi_bfin5xx.c
@@ -653,6 +653,7 @@ static void bfin_spi_pump_transfers(unsigned long data)
 		message->state = bfin_spi_next_transfer(drv_data);
 		/* Schedule next transfer tasklet */
 		tasklet_schedule(&drv_data->pump_transfers);
+		return;
 	}
 
 	if (transfer->tx_buf != NULL) {
-- 
1.7.4.rc1

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

* Re: [PATCH 1/2] spi/bfin_spi: support for multiples of 8bits with hardware CS
       [not found] ` <1294762748-25122-1-git-send-email-vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
  2011-01-11 16:19   ` [PATCH 2/2] spi/bfin_spi: return immediately after skipping to next transfer Mike Frysinger
@ 2011-02-15 22:06   ` Grant Likely
  1 sibling, 0 replies; 4+ messages in thread
From: Grant Likely @ 2011-02-15 22:06 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Bob Liu,
	David Brownell,
	uclinux-dist-devel-ZG0+EudsQA8dtHy/vicBwGD2FQJk+8+b

On Tue, Jan 11, 2011 at 11:19:07AM -0500, Mike Frysinger wrote:
> From: Bob Liu <lliubbo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> 
> We can do multiples of 8bit transfers when using the hardware CS and a
> little bit of magic, so make it work.
> 
> Signed-off-by: Bob Liu <lliubbo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Signed-off-by: Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>

Applied, thanks

g.

> ---
>  drivers/spi/spi_bfin5xx.c |  103 +++++++++++++++++++++++++++++++--------------
>  1 files changed, 71 insertions(+), 32 deletions(-)
> 
> diff --git a/drivers/spi/spi_bfin5xx.c b/drivers/spi/spi_bfin5xx.c
> index 3f22351..e8d68b7 100644
> --- a/drivers/spi/spi_bfin5xx.c
> +++ b/drivers/spi/spi_bfin5xx.c
> @@ -425,6 +425,7 @@ static irqreturn_t bfin_spi_pio_irq_handler(int irq, void *dev_id)
>  	struct bfin_spi_slave_data *chip = drv_data->cur_chip;
>  	struct spi_message *msg = drv_data->cur_msg;
>  	int n_bytes = drv_data->n_bytes;
> +	int loop = 0;
>  
>  	/* wait until transfer finished. */
>  	while (!(read_STAT(drv_data) & BIT_STAT_RXS))
> @@ -435,10 +436,15 @@ static irqreturn_t bfin_spi_pio_irq_handler(int irq, void *dev_id)
>  		/* last read */
>  		if (drv_data->rx) {
>  			dev_dbg(&drv_data->pdev->dev, "last read\n");
> -			if (n_bytes == 2)
> -				*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
> -			else if (n_bytes == 1)
> -				*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
> +			if (n_bytes % 2) {
> +				u16 *buf = (u16 *)drv_data->rx;
> +				for (loop = 0; loop < n_bytes / 2; loop++)
> +					*buf++ = read_RDBR(drv_data);
> +			} else {
> +				u8 *buf = (u8 *)drv_data->rx;
> +				for (loop = 0; loop < n_bytes; loop++)
> +					*buf++ = read_RDBR(drv_data);
> +			}
>  			drv_data->rx += n_bytes;
>  		}
>  
> @@ -458,29 +464,53 @@ static irqreturn_t bfin_spi_pio_irq_handler(int irq, void *dev_id)
>  	if (drv_data->rx && drv_data->tx) {
>  		/* duplex */
>  		dev_dbg(&drv_data->pdev->dev, "duplex: write_TDBR\n");
> -		if (drv_data->n_bytes == 2) {
> -			*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
> -			write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
> -		} else if (drv_data->n_bytes == 1) {
> -			*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
> -			write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
> +		if (n_bytes % 2) {
> +			u16 *buf = (u16 *)drv_data->rx;
> +			u16 *buf2 = (u16 *)drv_data->tx;
> +			for (loop = 0; loop < n_bytes / 2; loop++) {
> +				*buf++ = read_RDBR(drv_data);
> +				write_TDBR(drv_data, *buf2++);
> +			}
> +		} else {
> +			u8 *buf = (u8 *)drv_data->rx;
> +			u8 *buf2 = (u8 *)drv_data->tx;
> +			for (loop = 0; loop < n_bytes; loop++) {
> +				*buf++ = read_RDBR(drv_data);
> +				write_TDBR(drv_data, *buf2++);
> +			}
>  		}
>  	} else if (drv_data->rx) {
>  		/* read */
>  		dev_dbg(&drv_data->pdev->dev, "read: write_TDBR\n");
> -		if (drv_data->n_bytes == 2)
> -			*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
> -		else if (drv_data->n_bytes == 1)
> -			*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
> -		write_TDBR(drv_data, chip->idle_tx_val);
> +		if (n_bytes % 2) {
> +			u16 *buf = (u16 *)drv_data->rx;
> +			for (loop = 0; loop < n_bytes / 2; loop++) {
> +				*buf++ = read_RDBR(drv_data);
> +				write_TDBR(drv_data, chip->idle_tx_val);
> +			}
> +		} else {
> +			u8 *buf = (u8 *)drv_data->rx;
> +			for (loop = 0; loop < n_bytes; loop++) {
> +				*buf++ = read_RDBR(drv_data);
> +				write_TDBR(drv_data, chip->idle_tx_val);
> +			}
> +		}
>  	} else if (drv_data->tx) {
>  		/* write */
>  		dev_dbg(&drv_data->pdev->dev, "write: write_TDBR\n");
> -		bfin_spi_dummy_read(drv_data);
> -		if (drv_data->n_bytes == 2)
> -			write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
> -		else if (drv_data->n_bytes == 1)
> -			write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
> +		if (n_bytes % 2) {
> +			u16 *buf = (u16 *)drv_data->tx;
> +			for (loop = 0; loop < n_bytes / 2; loop++) {
> +				read_RDBR(drv_data);
> +				write_TDBR(drv_data, *buf++);
> +			}
> +		} else {
> +			u8 *buf = (u8 *)drv_data->tx;
> +			for (loop = 0; loop < n_bytes; loop++) {
> +				read_RDBR(drv_data);
> +				write_TDBR(drv_data, *buf++);
> +			}
> +		}
>  	}
>  
>  	if (drv_data->tx)
> @@ -651,16 +681,16 @@ static void bfin_spi_pump_transfers(unsigned long data)
>  
>  	/* Bits per word setup */
>  	bits_per_word = transfer->bits_per_word ? : message->spi->bits_per_word;
> -	if (bits_per_word == 8) {
> -		drv_data->n_bytes = 1;
> -		drv_data->len = transfer->len;
> -		cr_width = 0;
> -		drv_data->ops = &bfin_bfin_spi_transfer_ops_u8;
> -	} else if (bits_per_word == 16) {
> -		drv_data->n_bytes = 2;
> +	if ((bits_per_word > 0) && (bits_per_word % 16 == 0)) {
> +		drv_data->n_bytes = bits_per_word/8;
>  		drv_data->len = (transfer->len) >> 1;
>  		cr_width = BIT_CTL_WORDSIZE;
>  		drv_data->ops = &bfin_bfin_spi_transfer_ops_u16;
> +	} else if ((bits_per_word > 0) && (bits_per_word % 8 == 0)) {
> +		drv_data->n_bytes = bits_per_word/8;
> +		drv_data->len = transfer->len;
> +		cr_width = 0;
> +		drv_data->ops = &bfin_bfin_spi_transfer_ops_u8;
>  	} else {
>  		dev_err(&drv_data->pdev->dev, "transfer: unsupported bits_per_word\n");
>  		message->status = -EINVAL;
> @@ -815,10 +845,19 @@ static void bfin_spi_pump_transfers(unsigned long data)
>  		if (drv_data->tx == NULL)
>  			write_TDBR(drv_data, chip->idle_tx_val);
>  		else {
> -			if (bits_per_word == 8)
> -				write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
> -			else
> -				write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
> +			int loop;
> +			if (bits_per_word % 16 == 0) {
> +				u16 *buf = (u16 *)drv_data->tx;
> +				for (loop = 0; loop < bits_per_word / 16;
> +						loop++) {
> +					write_TDBR(drv_data, *buf++);
> +				}
> +			} else if (bits_per_word % 8 == 0) {
> +				u8 *buf = (u8 *)drv_data->tx;
> +				for (loop = 0; loop < bits_per_word / 8; loop++)
> +					write_TDBR(drv_data, *buf++);
> +			}
> +
>  			drv_data->tx += drv_data->n_bytes;
>  		}
>  
> @@ -1031,7 +1070,7 @@ static int bfin_spi_setup(struct spi_device *spi)
>  		chip->ctl_reg &= bfin_ctl_reg;
>  	}
>  
> -	if (spi->bits_per_word != 8 && spi->bits_per_word != 16) {
> +	if (spi->bits_per_word % 8) {
>  		dev_err(&spi->dev, "%d bits_per_word is not supported\n",
>  				spi->bits_per_word);
>  		goto error;
> -- 
> 1.7.4.rc1
> 

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb

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

* Re: [PATCH 2/2] spi/bfin_spi: return immediately after skipping to next transfer
       [not found]     ` <1294762748-25122-2-git-send-email-vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
@ 2011-02-15 22:06       ` Grant Likely
  0 siblings, 0 replies; 4+ messages in thread
From: Grant Likely @ 2011-02-15 22:06 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	David Brownell, Sonic Zhang,
	uclinux-dist-devel-ZG0+EudsQA8dtHy/vicBwGD2FQJk+8+b

On Tue, Jan 11, 2011 at 11:19:08AM -0500, Mike Frysinger wrote:
> From: Sonic Zhang <sonic.zhang-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
> 
> If there is an error with setting up a transfer, we need to return
> immediately rather than trying to continue to process things.  We
> already set up the error states for the caller at this point.
> 
> Signed-off-by: Sonic Zhang <sonic.zhang-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>

Applied, thanks.

g.

> ---
>  drivers/spi/spi_bfin5xx.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/spi/spi_bfin5xx.c b/drivers/spi/spi_bfin5xx.c
> index e8d68b7..a284624 100644
> --- a/drivers/spi/spi_bfin5xx.c
> +++ b/drivers/spi/spi_bfin5xx.c
> @@ -653,6 +653,7 @@ static void bfin_spi_pump_transfers(unsigned long data)
>  		message->state = bfin_spi_next_transfer(drv_data);
>  		/* Schedule next transfer tasklet */
>  		tasklet_schedule(&drv_data->pump_transfers);
> +		return;
>  	}
>  
>  	if (transfer->tx_buf != NULL) {
> -- 
> 1.7.4.rc1
> 

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb

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

end of thread, other threads:[~2011-02-15 22:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-11 16:19 [PATCH 1/2] spi/bfin_spi: support for multiples of 8bits with hardware CS Mike Frysinger
     [not found] ` <1294762748-25122-1-git-send-email-vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
2011-01-11 16:19   ` [PATCH 2/2] spi/bfin_spi: return immediately after skipping to next transfer Mike Frysinger
     [not found]     ` <1294762748-25122-2-git-send-email-vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
2011-02-15 22:06       ` Grant Likely
2011-02-15 22:06   ` [PATCH 1/2] spi/bfin_spi: support for multiples of 8bits with hardware CS Grant Likely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).