iio: Fix tmp006 dev-to-indio_dev conversion in suspend/resume
dev_to_iio_dev() is a false friend Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
Родитель
2b0774df40
Коммит
d320f1b481
|
@ -255,12 +255,14 @@ static int tmp006_remove(struct i2c_client *client)
|
||||||
#ifdef CONFIG_PM_SLEEP
|
#ifdef CONFIG_PM_SLEEP
|
||||||
static int tmp006_suspend(struct device *dev)
|
static int tmp006_suspend(struct device *dev)
|
||||||
{
|
{
|
||||||
return tmp006_powerdown(iio_priv(dev_to_iio_dev(dev)));
|
struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
|
||||||
|
return tmp006_powerdown(iio_priv(indio_dev));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tmp006_resume(struct device *dev)
|
static int tmp006_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct tmp006_data *data = iio_priv(dev_to_iio_dev(dev));
|
struct tmp006_data *data = iio_priv(i2c_get_clientdata(
|
||||||
|
to_i2c_client(dev)));
|
||||||
return i2c_smbus_write_word_swapped(data->client, TMP006_CONFIG,
|
return i2c_smbus_write_word_swapped(data->client, TMP006_CONFIG,
|
||||||
data->config | TMP006_CONFIG_MOD_MASK);
|
data->config | TMP006_CONFIG_MOD_MASK);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче