diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-12-02 22:03:35 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-12-14 15:09:13 +0100 |
commit | 9de63c91962b65f8fe2eab1748d9d85621fee08d (patch) | |
tree | ce7d262de775b410e04c09d1a5b9c664639d8b18 /drivers/media | |
parent | 8cc464fdcaaef1a38423c79c29df96db397d8b69 (diff) | |
download | linux-9de63c91962b65f8fe2eab1748d9d85621fee08d.tar.gz linux-9de63c91962b65f8fe2eab1748d9d85621fee08d.tar.bz2 linux-9de63c91962b65f8fe2eab1748d9d85621fee08d.zip |
media: i2c: max9286: Get rid of duplicate of_node assignment
GPIO library does copy the of_node from the parent device of
the GPIO chip, there is no need to repeat this in the individual
drivers. Remove assignment here.
For the details one may look into the of_gpio_dev_init() implementation.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/i2c/max9286.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/i2c/max9286.c b/drivers/media/i2c/max9286.c index 7c663fd587bb..a662d3aa0641 100644 --- a/drivers/media/i2c/max9286.c +++ b/drivers/media/i2c/max9286.c @@ -1055,7 +1055,6 @@ static int max9286_register_gpio(struct max9286_priv *priv) gpio->label = dev_name(dev); gpio->parent = dev; gpio->owner = THIS_MODULE; - gpio->of_node = dev->of_node; gpio->ngpio = 2; gpio->base = -1; gpio->set = max9286_gpio_set; |