summaryrefslogtreecommitdiffstats
path: root/drivers/iio/health
diff options
context:
space:
mode:
authorLars-Peter Clausen2017-02-11 13:34:18 +0100
committerJonathan Cameron2017-02-19 13:00:16 +0100
commitfa722499bbf89b5976bdfc77139f7d623a69a18a (patch)
treec9b2cb9a4e7d4839f1a500b33c2c507c300326a0 /drivers/iio/health
parentiio: max30100: Set parent device (diff)
downloadkernel-qcow2-linux-fa722499bbf89b5976bdfc77139f7d623a69a18a.tar.gz
kernel-qcow2-linux-fa722499bbf89b5976bdfc77139f7d623a69a18a.tar.xz
kernel-qcow2-linux-fa722499bbf89b5976bdfc77139f7d623a69a18a.zip
iio: max30102: Set parent device
Initialize the parent of the IIO device to the device that registered it. This makes sure that the IIO device appears the right level in the device hierarchy. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/health')
-rw-r--r--drivers/iio/health/max30102.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/health/max30102.c b/drivers/iio/health/max30102.c
index 377518c15552..839b875c29b9 100644
--- a/drivers/iio/health/max30102.c
+++ b/drivers/iio/health/max30102.c
@@ -410,6 +410,7 @@ static int max30102_probe(struct i2c_client *client,
indio_dev->available_scan_masks = max30102_scan_masks;
indio_dev->modes = (INDIO_BUFFER_SOFTWARE | INDIO_DIRECT_MODE);
indio_dev->setup_ops = &max30102_buffer_setup_ops;
+ indio_dev->dev.parent = &client->dev;
data = iio_priv(indio_dev);
data->indio_dev = indio_dev;