On 12/08/15 17:05, Srinivas Pandruvada wrote:
> On Wed, 2015-08-12 at 16:50 +0200, Markus Pargmann wrote:
>> i2c_get_clientdata() is specifically for i2c. Replace it with the
>> generic dev_get/set_drvdata() to support different protocols.
>>
>> Signed-off-by: Markus Pargmann <m...@pengutronix.de>
> Reviewed-by: Srinivas Pandruvada <srinivas.pandruv...@linux.intel.com>
Applied.
>> ---
>>  drivers/iio/gyro/bmg160.c | 10 +++++-----
>>  1 file changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/iio/gyro/bmg160.c b/drivers/iio/gyro/bmg160.c
>> index 4701ea17baea..6eab91ba8977 100644
>> --- a/drivers/iio/gyro/bmg160.c
>> +++ b/drivers/iio/gyro/bmg160.c
>> @@ -1020,7 +1020,7 @@ static int bmg160_probe(struct i2c_client *client,
>>              return -ENOMEM;
>>  
>>      data = iio_priv(indio_dev);
>> -    i2c_set_clientdata(client, indio_dev);
>> +    dev_set_drvdata(&client->dev, indio_dev);
>>      data->dev = &client->dev;
>>  
>>      ret = bmg160_chip_init(data);
>> @@ -1154,7 +1154,7 @@ static int bmg160_remove(struct i2c_client *client)
>>  #ifdef CONFIG_PM_SLEEP
>>  static int bmg160_suspend(struct device *dev)
>>  {
>> -    struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
>> +    struct iio_dev *indio_dev = dev_get_drvdata(dev);
>>      struct bmg160_data *data = iio_priv(indio_dev);
>>  
>>      mutex_lock(&data->mutex);
>> @@ -1166,7 +1166,7 @@ static int bmg160_suspend(struct device *dev)
>>  
>>  static int bmg160_resume(struct device *dev)
>>  {
>> -    struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
>> +    struct iio_dev *indio_dev = dev_get_drvdata(dev);
>>      struct bmg160_data *data = iio_priv(indio_dev);
>>  
>>      mutex_lock(&data->mutex);
>> @@ -1182,7 +1182,7 @@ static int bmg160_resume(struct device *dev)
>>  #ifdef CONFIG_PM
>>  static int bmg160_runtime_suspend(struct device *dev)
>>  {
>> -    struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
>> +    struct iio_dev *indio_dev = dev_get_drvdata(dev);
>>      struct bmg160_data *data = iio_priv(indio_dev);
>>      int ret;
>>  
>> @@ -1197,7 +1197,7 @@ static int bmg160_runtime_suspend(struct device *dev)
>>  
>>  static int bmg160_runtime_resume(struct device *dev)
>>  {
>> -    struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
>> +    struct iio_dev *indio_dev = dev_get_drvdata(dev);
>>      struct bmg160_data *data = iio_priv(indio_dev);
>>      int ret;
>>  
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to