mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
iio: adc: palmas_gpadc: retrieve a valid iio_dev in suspend/resume
commit d1aaf20ee6 upstream.
The suspend/resume functions were using dev_to_iio_dev() to get
the iio_dev. That only works on IIO dev's. Use dev_get_drvdata()
for a platform device to get the correct iio_dev.
Signed-off-by: Alison Schofield <amsfield22@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
db0e02ef6b
commit
54d2ccc400
@@ -775,7 +775,7 @@ static int palmas_adc_wakeup_reset(struct palmas_gpadc *adc)
|
|||||||
|
|
||||||
static int palmas_gpadc_suspend(struct device *dev)
|
static int palmas_gpadc_suspend(struct device *dev)
|
||||||
{
|
{
|
||||||
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
||||||
struct palmas_gpadc *adc = iio_priv(indio_dev);
|
struct palmas_gpadc *adc = iio_priv(indio_dev);
|
||||||
int wakeup = adc->wakeup1_enable || adc->wakeup2_enable;
|
int wakeup = adc->wakeup1_enable || adc->wakeup2_enable;
|
||||||
int ret;
|
int ret;
|
||||||
@@ -798,7 +798,7 @@ static int palmas_gpadc_suspend(struct device *dev)
|
|||||||
|
|
||||||
static int palmas_gpadc_resume(struct device *dev)
|
static int palmas_gpadc_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
||||||
struct palmas_gpadc *adc = iio_priv(indio_dev);
|
struct palmas_gpadc *adc = iio_priv(indio_dev);
|
||||||
int wakeup = adc->wakeup1_enable || adc->wakeup2_enable;
|
int wakeup = adc->wakeup1_enable || adc->wakeup2_enable;
|
||||||
int ret;
|
int ret;
|
||||||
|
|||||||
Reference in New Issue
Block a user