diff mbox series

iio: core: fix/re-introduce back parent assignment

Message ID 20200721102407.134402-1-alexandru.ardelean@analog.com (mailing list archive)
State New, archived
Headers show
Series iio: core: fix/re-introduce back parent assignment | expand

Commit Message

Alexandru Ardelean July 21, 2020, 10:24 a.m. UTC
This was introduced initially via commit 78289b4a58b58 ("iio: core: pass
parent device as parameter during allocation"), but was accidentally
removed via commit 6d4ebd565d15f ("iio: core: wrap IIO device into an
iio_dev_opaque object").

This looks like a rebase gone wrong, and ends up breaking devicetree
bindings of IIO clients.

This change adds back the parent assignment.

Fixes 6d4ebd565d15f: ("iio: core: wrap IIO device into an iio_dev_opaque object")
Reported-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
---
 drivers/iio/industrialio-core.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Dmitry Baryshkov July 21, 2020, 10:34 a.m. UTC | #1
вт, 21 июл. 2020 г. в 13:24, Alexandru Ardelean <alexandru.ardelean@analog.com>:
>
> This was introduced initially via commit 78289b4a58b58 ("iio: core: pass
> parent device as parameter during allocation"), but was accidentally
> removed via commit 6d4ebd565d15f ("iio: core: wrap IIO device into an
> iio_dev_opaque object").
>
> This looks like a rebase gone wrong, and ends up breaking devicetree
> bindings of IIO clients.
>
> This change adds back the parent assignment.
>
> Fixes 6d4ebd565d15f: ("iio: core: wrap IIO device into an iio_dev_opaque object")
> Reported-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
> Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>

Tested-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Jonathan Cameron July 21, 2020, 12:19 p.m. UTC | #2
On Tue, 21 Jul 2020 13:34:19 +0300
Dmitry Baryshkov <dbaryshkov@gmail.com> wrote:

> вт, 21 июл. 2020 г. в 13:24, Alexandru Ardelean <alexandru.ardelean@analog.com>:
>  [...]  
> 
> Tested-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
> 
Applied to the togreg branch of iio.git and pushed out as testing.
Current plan is to do a pull request tomorrow so should make it in time
for the merge window.  If it gets delayed for some reason we can send
it as a fix after the merge window.

Thanks,

Jonathan
diff mbox series

Patch

diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
index 30fc96952681..59003dc44e60 100644
--- a/drivers/iio/industrialio-core.c
+++ b/drivers/iio/industrialio-core.c
@@ -1546,6 +1546,7 @@  struct iio_dev *iio_device_alloc(struct device *parent, int sizeof_priv)
 	dev->priv = (char *)iio_dev_opaque +
 		ALIGN(sizeof(struct iio_dev_opaque), IIO_ALIGN);
 
+	dev->dev.parent = parent;
 	dev->dev.groups = dev->groups;
 	dev->dev.type = &iio_device_type;
 	dev->dev.bus = &iio_bus_type;