linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Lars-Peter Clausen <lars@metafoo.de>
Cc: linux-iio@vger.kernel.org
Subject: Re: [PATCH 08/15] iio:ad7266: Mark transfer buffer as __be16
Date: Sat, 30 Nov 2013 11:10:56 +0000	[thread overview]
Message-ID: <5299C7C0.7060005@kernel.org> (raw)
In-Reply-To: <1385383327-28181-8-git-send-email-lars@metafoo.de>

On 11/25/13 12:42, Lars-Peter Clausen wrote:
> Fixes the following warnings from sparse:
> 	drivers/iio/adc/ad7266.c:140:16: warning: cast to restricted __be16
> 	drivers/iio/adc/ad7266.c:140:16: warning: cast to restricted __be16
> 	drivers/iio/adc/ad7266.c:140:16: warning: cast to restricted __be16
> 	drivers/iio/adc/ad7266.c:140:16: warning: cast to restricted __be16

Technically this does a fair bit of other refactoring, but that's all good
anyway.
> 
> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>

Applied to the togreg branch of iio.git

Thanks.

> ---
>  drivers/iio/adc/ad7266.c | 21 ++++++++++++---------
>  1 file changed, 12 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/iio/adc/ad7266.c b/drivers/iio/adc/ad7266.c
> index 58e9455..70f78c3 100644
> --- a/drivers/iio/adc/ad7266.c
> +++ b/drivers/iio/adc/ad7266.c
> @@ -43,19 +43,22 @@ struct ad7266_state {
>  	 * The buffer needs to be large enough to hold two samples (4 bytes) and
>  	 * the naturally aligned timestamp (8 bytes).
>  	 */
> -	uint8_t data[ALIGN(4, sizeof(s64)) + sizeof(s64)] ____cacheline_aligned;
> +	struct {
> +		__be16 sample[2];
> +		s64 timestamp;
> +	} data ____cacheline_aligned;
>  };
>  
>  static int ad7266_wakeup(struct ad7266_state *st)
>  {
>  	/* Any read with >= 2 bytes will wake the device */
> -	return spi_read(st->spi, st->data, 2);
> +	return spi_read(st->spi, &st->data.sample[0], 2);
>  }
>  
>  static int ad7266_powerdown(struct ad7266_state *st)
>  {
>  	/* Any read with < 2 bytes will powerdown the device */
> -	return spi_read(st->spi, st->data, 1);
> +	return spi_read(st->spi, &st->data.sample[0], 1);
>  }
>  
>  static int ad7266_preenable(struct iio_dev *indio_dev)
> @@ -84,9 +87,9 @@ static irqreturn_t ad7266_trigger_handler(int irq, void *p)
>  	struct ad7266_state *st = iio_priv(indio_dev);
>  	int ret;
>  
> -	ret = spi_read(st->spi, st->data, 4);
> +	ret = spi_read(st->spi, st->data.sample, 4);
>  	if (ret == 0) {
> -		iio_push_to_buffers_with_timestamp(indio_dev, st->data,
> +		iio_push_to_buffers_with_timestamp(indio_dev, &st->data,
>  			    pf->timestamp);
>  	}
>  
> @@ -137,7 +140,7 @@ static int ad7266_read_single(struct ad7266_state *st, int *val,
>  	ad7266_select_input(st, address);
>  
>  	ret = spi_sync(st->spi, &st->single_msg);
> -	*val = be16_to_cpu(st->data[address % 2]);
> +	*val = be16_to_cpu(st->data.sample[address % 2]);
>  
>  	return ret;
>  }
> @@ -442,15 +445,15 @@ static int ad7266_probe(struct spi_device *spi)
>  	ad7266_init_channels(indio_dev);
>  
>  	/* wakeup */
> -	st->single_xfer[0].rx_buf = &st->data;
> +	st->single_xfer[0].rx_buf = &st->data.sample[0];
>  	st->single_xfer[0].len = 2;
>  	st->single_xfer[0].cs_change = 1;
>  	/* conversion */
> -	st->single_xfer[1].rx_buf = &st->data;
> +	st->single_xfer[1].rx_buf = st->data.sample;
>  	st->single_xfer[1].len = 4;
>  	st->single_xfer[1].cs_change = 1;
>  	/* powerdown */
> -	st->single_xfer[2].tx_buf = &st->data;
> +	st->single_xfer[2].tx_buf = &st->data.sample[0];
>  	st->single_xfer[2].len = 1;
>  
>  	spi_message_init(&st->single_msg);
> 

  reply	other threads:[~2013-11-30 11:10 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-25 12:41 [PATCH 01/15] iio:ad5504: Mark transfer buffers as __be16 Lars-Peter Clausen
2013-11-25 12:41 ` [PATCH 02/15] iio:ad5504: Do not store transfer buffers on the stack Lars-Peter Clausen
2013-11-30 11:07   ` Jonathan Cameron
2013-11-25 12:41 ` [PATCH 03/15] iio:ad5421: Mark transfer buffer as __be32 Lars-Peter Clausen
2013-11-30 11:07   ` Jonathan Cameron
2013-11-25 12:41 ` [PATCH 04/15] iio:ad5686: " Lars-Peter Clausen
2013-11-30 11:07   ` Jonathan Cameron
2013-11-25 12:41 ` [PATCH 05/15] iio:ad5755: " Lars-Peter Clausen
2013-11-30 11:08   ` Jonathan Cameron
2013-11-25 12:41 ` [PATCH 06/15] iio:ad5791: Mark transfer buffers " Lars-Peter Clausen
2013-11-30 11:08   ` Jonathan Cameron
2013-11-25 12:41 ` [PATCH 07/15] iio:ad5791: Do not store transfer buffers on the stack Lars-Peter Clausen
2013-11-30 11:09   ` Jonathan Cameron
2013-12-22 17:36     ` Jonathan Cameron
2013-12-22 17:40       ` Lars-Peter Clausen
2013-12-22 17:43         ` Jonathan Cameron
2013-11-25 12:42 ` [PATCH 08/15] iio:ad7266: Mark transfer buffer as __be16 Lars-Peter Clausen
2013-11-30 11:10   ` Jonathan Cameron [this message]
2013-11-25 12:42 ` [PATCH 09/15] iio:vcnl4000: " Lars-Peter Clausen
2013-11-30 11:11   ` Jonathan Cameron
2013-11-25 12:42 ` [PATCH 10/15] staging:iio:ad7280a: Mark transfer buffer as __be32 Lars-Peter Clausen
2013-11-30 11:12   ` Jonathan Cameron
2013-11-25 12:42 ` [PATCH 11/15] staging:iio:ad7280a: Do not store transfer buffer on the stack Lars-Peter Clausen
2013-11-30 11:12   ` Jonathan Cameron
2013-11-25 12:42 ` [PATCH 12/15] staging:iio:ad7746: Mark transfer buffer as __be32 Lars-Peter Clausen
2013-11-30 11:13   ` Jonathan Cameron
2013-11-25 12:42 ` [PATCH 13/15] staging:iio:ad7746: Do not store the transfer buffer on the stack Lars-Peter Clausen
2013-11-30 11:13   ` Jonathan Cameron
2013-12-22 17:22     ` Jonathan Cameron
2013-11-25 12:42 ` [PATCH 14/15] staging:iio:ad9832: Mark transfer buffers as __be16 Lars-Peter Clausen
2013-11-30 11:14   ` Jonathan Cameron
2013-12-03 10:27     ` Lars-Peter Clausen
2013-12-03 14:56       ` Jonathan Cameron
2013-12-03 20:09         ` Jonathan Cameron
2013-12-03 20:11           ` Lars-Peter Clausen
2013-11-25 12:42 ` [PATCH 15/15] staging:iio:ad9834: Mark transfer buffers as __b16 Lars-Peter Clausen
2013-11-30 11:14   ` Jonathan Cameron
2013-11-30 11:03 ` [PATCH 01/15] iio:ad5504: Mark transfer buffers as __be16 Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5299C7C0.7060005@kernel.org \
    --to=jic23@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).