Linux IIO development
 help / color / mirror / Atom feed
* [PATCH] iio:common: Use spi_sync_transfer() in STMicroelectronics common library
@ 2013-02-09 16:08 Denis Ciocca
  2013-03-03 12:13 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Denis Ciocca @ 2013-02-09 16:08 UTC (permalink / raw)
  To: jic23, lars, linux-iio; +Cc: Denis Ciocca

Use the new spi_sync_transfer() helper function instead of open-coding it.

Signed-off-by: Denis Ciocca <denis.ciocca@st.com>
---
 drivers/iio/common/st_sensors/st_sensors_spi.c |   11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/drivers/iio/common/st_sensors/st_sensors_spi.c b/drivers/iio/common/st_sensors/st_sensors_spi.c
index f0aa2f1..251baf6 100644
--- a/drivers/iio/common/st_sensors/st_sensors_spi.c
+++ b/drivers/iio/common/st_sensors/st_sensors_spi.c
@@ -29,7 +29,6 @@ static unsigned int st_sensors_spi_get_irq(struct iio_dev *indio_dev)
 static int st_sensors_spi_read(struct st_sensor_transfer_buffer *tb,
 	struct device *dev, u8 reg_addr, int len, u8 *data, bool multiread_bit)
 {
-	struct spi_message msg;
 	int err;
 
 	struct spi_transfer xfers[] = {
@@ -51,10 +50,7 @@ static int st_sensors_spi_read(struct st_sensor_transfer_buffer *tb,
 	else
 		tb->tx_buf[0] = reg_addr | ST_SENSORS_SPI_READ;
 
-	spi_message_init(&msg);
-	spi_message_add_tail(&xfers[0], &msg);
-	spi_message_add_tail(&xfers[1], &msg);
-	err = spi_sync(to_spi_device(dev), &msg);
+	err = spi_sync_transfer(to_spi_device(dev), xfers, ARRAY_SIZE(xfers));
 	if (err)
 		goto acc_spi_read_error;
 
@@ -83,7 +79,6 @@ static int st_sensors_spi_read_multiple_byte(
 static int st_sensors_spi_write_byte(struct st_sensor_transfer_buffer *tb,
 				struct device *dev, u8 reg_addr, u8 data)
 {
-	struct spi_message msg;
 	int err;
 
 	struct spi_transfer xfers = {
@@ -96,9 +91,7 @@ static int st_sensors_spi_write_byte(struct st_sensor_transfer_buffer *tb,
 	tb->tx_buf[0] = reg_addr;
 	tb->tx_buf[1] = data;
 
-	spi_message_init(&msg);
-	spi_message_add_tail(&xfers, &msg);
-	err = spi_sync(to_spi_device(dev), &msg);
+	err = spi_sync_transfer(to_spi_device(dev), &xfers, 1);
 	mutex_unlock(&tb->buf_lock);
 
 	return err;
-- 
1.7.9.5


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

* Re: [PATCH] iio:common: Use spi_sync_transfer() in STMicroelectronics common library
  2013-02-09 16:08 [PATCH] iio:common: Use spi_sync_transfer() in STMicroelectronics common library Denis Ciocca
@ 2013-03-03 12:13 ` Jonathan Cameron
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2013-03-03 12:13 UTC (permalink / raw)
  To: Denis Ciocca; +Cc: lars, linux-iio, Denis Ciocca

On 02/09/2013 04:08 PM, Denis Ciocca wrote:
> Use the new spi_sync_transfer() helper function instead of open-coding it.
> 
> Signed-off-by: Denis Ciocca <denis.ciocca@st.com>
Applied to togreg branch of iio.git
> ---
>  drivers/iio/common/st_sensors/st_sensors_spi.c |   11 ++---------
>  1 file changed, 2 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/iio/common/st_sensors/st_sensors_spi.c b/drivers/iio/common/st_sensors/st_sensors_spi.c
> index f0aa2f1..251baf6 100644
> --- a/drivers/iio/common/st_sensors/st_sensors_spi.c
> +++ b/drivers/iio/common/st_sensors/st_sensors_spi.c
> @@ -29,7 +29,6 @@ static unsigned int st_sensors_spi_get_irq(struct iio_dev *indio_dev)
>  static int st_sensors_spi_read(struct st_sensor_transfer_buffer *tb,
>  	struct device *dev, u8 reg_addr, int len, u8 *data, bool multiread_bit)
>  {
> -	struct spi_message msg;
>  	int err;
>  
>  	struct spi_transfer xfers[] = {
> @@ -51,10 +50,7 @@ static int st_sensors_spi_read(struct st_sensor_transfer_buffer *tb,
>  	else
>  		tb->tx_buf[0] = reg_addr | ST_SENSORS_SPI_READ;
>  
> -	spi_message_init(&msg);
> -	spi_message_add_tail(&xfers[0], &msg);
> -	spi_message_add_tail(&xfers[1], &msg);
> -	err = spi_sync(to_spi_device(dev), &msg);
> +	err = spi_sync_transfer(to_spi_device(dev), xfers, ARRAY_SIZE(xfers));
>  	if (err)
>  		goto acc_spi_read_error;
>  
> @@ -83,7 +79,6 @@ static int st_sensors_spi_read_multiple_byte(
>  static int st_sensors_spi_write_byte(struct st_sensor_transfer_buffer *tb,
>  				struct device *dev, u8 reg_addr, u8 data)
>  {
> -	struct spi_message msg;
>  	int err;
>  
>  	struct spi_transfer xfers = {
> @@ -96,9 +91,7 @@ static int st_sensors_spi_write_byte(struct st_sensor_transfer_buffer *tb,
>  	tb->tx_buf[0] = reg_addr;
>  	tb->tx_buf[1] = data;
>  
> -	spi_message_init(&msg);
> -	spi_message_add_tail(&xfers, &msg);
> -	err = spi_sync(to_spi_device(dev), &msg);
> +	err = spi_sync_transfer(to_spi_device(dev), &xfers, 1);
>  	mutex_unlock(&tb->buf_lock);
>  
>  	return err;
> 

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

end of thread, other threads:[~2013-03-03 12:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-09 16:08 [PATCH] iio:common: Use spi_sync_transfer() in STMicroelectronics common library Denis Ciocca
2013-03-03 12:13 ` Jonathan Cameron

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