From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from saturn.retrosnub.co.uk ([178.18.118.26]:37342 "EHLO saturn.retrosnub.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751455AbdBSMBG (ORCPT ); Sun, 19 Feb 2017 07:01:06 -0500 Subject: Re: [PATCH 5/8] iio: max30102: Set parent device To: Lars-Peter Clausen References: <1486816461-28618-1-git-send-email-lars@metafoo.de> <1486816461-28618-6-git-send-email-lars@metafoo.de> Cc: Hartmut Knaack , Peter Meerwald-Stadler , William Breathitt Gray , Matt Ranostay , linux-iio@vger.kernel.org From: Jonathan Cameron Message-ID: <5bde13ee-c02f-fd0b-51b3-0d4fbec26bc2@kernel.org> Date: Sun, 19 Feb 2017 12:01:04 +0000 MIME-Version: 1.0 In-Reply-To: <1486816461-28618-6-git-send-email-lars@metafoo.de> Content-Type: text/plain; charset=windows-1252 Sender: linux-iio-owner@vger.kernel.org List-Id: linux-iio@vger.kernel.org On 11/02/17 12:34, Lars-Peter Clausen wrote: > 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 Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/health/max30102.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/iio/health/max30102.c b/drivers/iio/health/max30102.c > index 377518c..839b875 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; >