diff options
| author | Patrik Dahlström <[email protected]> | 2023-03-13 20:50:29 +0000 |
|---|---|---|
| committer | Jonathan Cameron <[email protected]> | 2023-03-18 16:11:25 +0000 |
| commit | 49f76c499d38bf67803438eee88c8300d0f6ce09 (patch) | |
| tree | 16a70e9e50f94ebe0a0edbfce1303c74cda256d6 | |
| parent | iio: adc: max11410: fix read_poll_timeout() usage (diff) | |
| download | kernel-49f76c499d38bf67803438eee88c8300d0f6ce09.tar.gz kernel-49f76c499d38bf67803438eee88c8300d0f6ce09.zip | |
iio: adc: palmas_gpadc: fix NULL dereference on rmmod
Calling dev_to_iio_dev() on a platform device pointer is undefined and
will make adc NULL.
Signed-off-by: Patrik Dahlström <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jonathan Cameron <[email protected]>
| -rw-r--r-- | drivers/iio/adc/palmas_gpadc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/palmas_gpadc.c b/drivers/iio/adc/palmas_gpadc.c index fd000345ec5c..849a697a467e 100644 --- a/drivers/iio/adc/palmas_gpadc.c +++ b/drivers/iio/adc/palmas_gpadc.c @@ -639,7 +639,7 @@ out: static int palmas_gpadc_remove(struct platform_device *pdev) { - struct iio_dev *indio_dev = dev_to_iio_dev(&pdev->dev); + struct iio_dev *indio_dev = dev_get_drvdata(&pdev->dev); struct palmas_gpadc *adc = iio_priv(indio_dev); if (adc->wakeup1_enable || adc->wakeup2_enable) |
