From: Lars-Peter Clausen Date: Sat, 11 Feb 2017 12:34:21 +0000 (+0100) Subject: iio: maxim_thermocouple: Set parent device X-Git-Tag: v4.12-rc1~84^2~771^2~19 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=74e2419b00d870b373ada4878e3d66d8dc97f4b0;p=karo-tx-linux.git iio: maxim_thermocouple: 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/temperature/maxim_thermocouple.c b/drivers/iio/temperature/maxim_thermocouple.c index f962f31a5eb2..557214202eff 100644 --- a/drivers/iio/temperature/maxim_thermocouple.c +++ b/drivers/iio/temperature/maxim_thermocouple.c @@ -231,6 +231,7 @@ static int maxim_thermocouple_probe(struct spi_device *spi) indio_dev->available_scan_masks = chip->scan_masks; indio_dev->num_channels = chip->num_channels; indio_dev->modes = INDIO_DIRECT_MODE; + indio_dev->dev.parent = &spi->dev; data = iio_priv(indio_dev); data->spi = spi;