From: Lars-Peter Clausen Date: Sat, 11 Feb 2017 12:34:17 +0000 (+0100) Subject: iio: max30100: Set parent device X-Git-Tag: v4.12-rc1~84^2~771^2~23 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5d548b733eb4b5cfb03e1acbcbfafca97455132c;p=linux-2.6-block.git iio: max30100: 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 Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/health/max30100.c b/drivers/iio/health/max30100.c index 9648c69ea1a2..10b3e0d57c4a 100644 --- a/drivers/iio/health/max30100.c +++ b/drivers/iio/health/max30100.c @@ -449,6 +449,7 @@ static int max30100_probe(struct i2c_client *client, indio_dev->available_scan_masks = max30100_scan_masks; indio_dev->modes = (INDIO_BUFFER_SOFTWARE | INDIO_DIRECT_MODE); indio_dev->setup_ops = &max30100_buffer_setup_ops; + indio_dev->dev.parent = &client->dev; data = iio_priv(indio_dev); data->indio_dev = indio_dev;