summaryrefslogtreecommitdiff
path: root/drivers/iio/adc/ti-adc081c.c
diff options
context:
space:
mode:
authorMatt Ranostay <mranostay@gmail.com>2016-07-02 17:26:33 -0700
committerJonathan Cameron <jic23@kernel.org>2016-07-03 13:40:08 +0100
commitb541eaff4917a7429cd0e83cb3962383276db357 (patch)
tree30a37b1331d62e50beb29691e1bfdab50d901fbf /drivers/iio/adc/ti-adc081c.c
parentf5241dbdfef4404b4e80f0bda13e5c7ceba3ee4a (diff)
iio: adc: add missing of_node references to iio_dev
Adding missing indio_dev->dev.of_node references to allow iio consumers to access the device channels. Signed-off-by: Matt Ranostay <mranostay@gmail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc/ti-adc081c.c')
-rw-r--r--drivers/iio/adc/ti-adc081c.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/adc/ti-adc081c.c b/drivers/iio/adc/ti-adc081c.c
index 283d2a12b6da..319172cf7da8 100644
--- a/drivers/iio/adc/ti-adc081c.c
+++ b/drivers/iio/adc/ti-adc081c.c
@@ -186,6 +186,7 @@ static int adc081c_probe(struct i2c_client *client,
return err;
iio->dev.parent = &client->dev;
+ iio->dev.of_node = client->dev.of_node;
iio->name = dev_name(&client->dev);
iio->modes = INDIO_DIRECT_MODE;
iio->info = &adc081c_info;