All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iio: max31856: add missing of_node and parent references to iio_dev
@ 2019-09-09 12:58 Andrea Merello
  2019-09-15 12:27 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Andrea Merello @ 2019-09-09 12:58 UTC (permalink / raw)
  To: paresh.chaudhary, patrick.havelange, pmeerw, lars, knaack.h,
	jic23
  Cc: linux-iio, Andrea Merello

Adding missing indio_dev->dev.of_node references so that, in case multiple
max31856 are present, users can get some clues to being able to distinguish
each of them. While at it, add also the missing parent reference.

Signed-off-by: Andrea Merello <andrea.merello@gmail.com>

diff --git a/drivers/iio/temperature/max31856.c b/drivers/iio/temperature/max31856.c
index f184ba5601d9..73ed550e3fc9 100644
--- a/drivers/iio/temperature/max31856.c
+++ b/drivers/iio/temperature/max31856.c
@@ -284,6 +284,8 @@ static int max31856_probe(struct spi_device *spi)
 	spi_set_drvdata(spi, indio_dev);
 
 	indio_dev->info = &max31856_info;
+	indio_dev->dev.parent = &spi->dev;
+	indio_dev->dev.of_node = spi->dev.of_node;
 	indio_dev->name = id->name;
 	indio_dev->modes = INDIO_DIRECT_MODE;
 	indio_dev->channels = max31856_channels;
-- 
2.17.1


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

end of thread, other threads:[~2019-09-15 12:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-09 12:58 [PATCH] iio: max31856: add missing of_node and parent references to iio_dev Andrea Merello
2019-09-15 12:27 ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.