public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iio: adc: palmas_gpadc: fix NULL dereference on rmmod
@ 2023-03-13 20:50 Patrik Dahlström
  2023-03-18 16:30 ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Patrik Dahlström @ 2023-03-13 20:50 UTC (permalink / raw)
  To: jic23, lars, linux-iio, linux-kernel, hns; +Cc: Patrik Dahlström

Calling dev_to_iio_dev() on a platform device pointer is undefined and
will make adc NULL.

Signed-off-by: Patrik Dahlström <risca@dalakolonin.se>
---
 drivers/iio/adc/palmas_gpadc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/adc/palmas_gpadc.c b/drivers/iio/adc/palmas_gpadc.c
index 61e80bf3d05e..6db6f3bc768a 100644
--- a/drivers/iio/adc/palmas_gpadc.c
+++ b/drivers/iio/adc/palmas_gpadc.c
@@ -638,7 +638,7 @@ static int palmas_gpadc_probe(struct platform_device *pdev)
 
 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)
-- 
2.25.1


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

end of thread, other threads:[~2023-03-19 15:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-13 20:50 [PATCH] iio: adc: palmas_gpadc: fix NULL dereference on rmmod Patrik Dahlström
2023-03-18 16:30 ` Jonathan Cameron
2023-03-18 19:22   ` Patrik Dahlström
2023-03-19 15:32     ` Jonathan Cameron
2023-03-19 15:45       ` H. Nikolaus Schaller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox