linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH]iio:humidity:si7020: fix pointer to i2c client
@ 2014-10-25 18:09 Hartmut Knaack
  2014-10-25 19:40 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Hartmut Knaack @ 2014-10-25 18:09 UTC (permalink / raw)
  To: IIO; +Cc: David Barksdale

In si7020_read_raw() the pointer to the i2c client was obtained as second level
pointer, although a simple pointer is appropriate.

Signed-off-by: Hartmut Knaack <knaack.h@gmx.de>
---
diff --git a/drivers/iio/humidity/si7020.c b/drivers/iio/humidity/si7020.c
index e336af7..62d74d3 100644
--- a/drivers/iio/humidity/si7020.c
+++ b/drivers/iio/humidity/si7020.c
@@ -45,12 +45,12 @@ static int si7020_read_raw(struct iio_dev *indio_dev,
 			   struct iio_chan_spec const *chan, int *val,
 			   int *val2, long mask)
 {
-	struct i2c_client **client = iio_priv(indio_dev);
+	struct i2c_client *client = iio_priv(indio_dev);
 	int ret;
 
 	switch (mask) {
 	case IIO_CHAN_INFO_RAW:
-		ret = i2c_smbus_read_word_data(*client,
+		ret = i2c_smbus_read_word_data(client,
 					       chan->type == IIO_TEMP ?
 					       SI7020CMD_TEMP_HOLD :
 					       SI7020CMD_RH_HOLD);


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

* Re: [PATCH]iio:humidity:si7020: fix pointer to i2c client
  2014-10-25 18:09 [PATCH]iio:humidity:si7020: fix pointer to i2c client Hartmut Knaack
@ 2014-10-25 19:40 ` Jonathan Cameron
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2014-10-25 19:40 UTC (permalink / raw)
  To: Hartmut Knaack, IIO; +Cc: David Barksdale

On 25/10/14 19:09, Hartmut Knaack wrote:
> In si7020_read_raw() the pointer to the i2c client was obtained as second level
> pointer, although a simple pointer is appropriate.
> 
> Signed-off-by: Hartmut Knaack <knaack.h@gmx.de>
What I'd neglected (being a forgetful soul) is that we only just took this driver
anyway so the two patches will both end up in togreg whatever.

So applied to the togreg branch of iio.git - initially pushed out as testing
etc etc.

Jonathan
> ---
> diff --git a/drivers/iio/humidity/si7020.c b/drivers/iio/humidity/si7020.c
> index e336af7..62d74d3 100644
> --- a/drivers/iio/humidity/si7020.c
> +++ b/drivers/iio/humidity/si7020.c
> @@ -45,12 +45,12 @@ static int si7020_read_raw(struct iio_dev *indio_dev,
>  			   struct iio_chan_spec const *chan, int *val,
>  			   int *val2, long mask)
>  {
> -	struct i2c_client **client = iio_priv(indio_dev);
> +	struct i2c_client *client = iio_priv(indio_dev);
>  	int ret;
>  
>  	switch (mask) {
>  	case IIO_CHAN_INFO_RAW:
> -		ret = i2c_smbus_read_word_data(*client,
> +		ret = i2c_smbus_read_word_data(client,
>  					       chan->type == IIO_TEMP ?
>  					       SI7020CMD_TEMP_HOLD :
>  					       SI7020CMD_RH_HOLD);
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

end of thread, other threads:[~2014-10-25 19:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-25 18:09 [PATCH]iio:humidity:si7020: fix pointer to i2c client Hartmut Knaack
2014-10-25 19:40 ` Jonathan Cameron

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).