diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2016-08-31 04:28:46 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-06-06 09:27:51 -0300 |
commit | 048ea05b4f4c8f8cf0a9d4c5fc7d16f867160764 (patch) | |
tree | 86a8c4f66543b63b648eb6bce02ba2c839ceebee /drivers/leds/leds-max77693.c | |
parent | ecdf0cfe711b3780e829a6e24ffd3275f9cbfc2a (diff) | |
download | op-kernel-dev-048ea05b4f4c8f8cf0a9d4c5fc7d16f867160764.zip op-kernel-dev-048ea05b4f4c8f8cf0a9d4c5fc7d16f867160764.tar.gz |
[media] v4l: flash led class: Use fwnode_handle instead of device_node in init
Pass the more generic fwnode_handle to the init function than the
device_node.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Tested-by: Hans Verkuil <hans.verkuil@cisco.com>
Tested-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/leds/leds-max77693.c')
-rw-r--r-- | drivers/leds/leds-max77693.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/leds/leds-max77693.c b/drivers/leds/leds-max77693.c index 1eb58ef..2d3062d 100644 --- a/drivers/leds/leds-max77693.c +++ b/drivers/leds/leds-max77693.c @@ -930,8 +930,9 @@ static int max77693_register_led(struct max77693_sub_led *sub_led, max77693_init_v4l2_flash_config(sub_led, led_cfg, &v4l2_sd_cfg); /* Register in the V4L2 subsystem. */ - sub_led->v4l2_flash = v4l2_flash_init(dev, sub_node, fled_cdev, NULL, - &v4l2_flash_ops, &v4l2_sd_cfg); + sub_led->v4l2_flash = v4l2_flash_init(dev, of_fwnode_handle(sub_node), + fled_cdev, NULL, &v4l2_flash_ops, + &v4l2_sd_cfg); if (IS_ERR(sub_led->v4l2_flash)) { ret = PTR_ERR(sub_led->v4l2_flash); goto err_v4l2_flash_init; |