iio: core: fix/re-introduce back parent assignment
authorAlexandru Ardelean <alexandru.ardelean@analog.com>
Tue, 21 Jul 2020 10:24:07 +0000 (13:24 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 22 Jul 2020 13:36:23 +0000 (14:36 +0100)
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>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/industrialio-core.c

index e6ecda2..606d5e6 100644 (file)
@@ -1545,6 +1545,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;