mirror of https://gitee.com/openkylin/linux.git
drm/bridge: ti-tfp410: switch to using fwnode_gpiod_get_index()
Instead of fwnode_get_named_gpiod() that I plan to hide away, let's use the new fwnode_gpiod_get_index() that mimics gpiod_get_index(), but works with arbitrary firmware node. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Acked-by: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
61b7805a9b
commit
8b598e7f4e
|
@ -284,8 +284,8 @@ static int tfp410_get_connector_properties(struct tfp410 *dvi)
|
|||
else
|
||||
dvi->connector_type = DRM_MODE_CONNECTOR_DVID;
|
||||
|
||||
dvi->hpd = fwnode_get_named_gpiod(&connector_node->fwnode,
|
||||
"hpd-gpios", 0, GPIOD_IN, "hpd");
|
||||
dvi->hpd = fwnode_gpiod_get_index(&connector_node->fwnode,
|
||||
"hpd", 0, GPIOD_IN, "hpd");
|
||||
if (IS_ERR(dvi->hpd)) {
|
||||
ret = PTR_ERR(dvi->hpd);
|
||||
dvi->hpd = NULL;
|
||||
|
|
Loading…
Reference in New Issue