drm/bridge: tc358775: switch to devm_drm_of_get_bridge
authorJosé Expósito <jose.exposito89@gmail.com>
Mon, 28 Feb 2022 18:35:37 +0000 (19:35 +0100)
committerMaxime Ripard <maxime@cerno.tech>
Tue, 8 Mar 2022 11:07:57 +0000 (12:07 +0100)
The function "drm_of_find_panel_or_bridge" has been deprecated in
favor of "devm_drm_of_get_bridge".

Switch to the new function and reduce boilerplate.

Signed-off-by: José Expósito <jose.exposito89@gmail.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20220228183537.24600-1-jose.exposito89@gmail.com
drivers/gpu/drm/bridge/tc358775.c

index 695af3b..b987e5a 100644 (file)
@@ -649,7 +649,6 @@ static int tc_attach_host(struct tc_data *tc)
 static int tc_probe(struct i2c_client *client, const struct i2c_device_id *id)
 {
        struct device *dev = &client->dev;
-       struct drm_panel *panel;
        struct tc_data *tc;
        int ret;
 
@@ -660,14 +659,8 @@ static int tc_probe(struct i2c_client *client, const struct i2c_device_id *id)
        tc->dev = dev;
        tc->i2c = client;
 
-       ret = drm_of_find_panel_or_bridge(dev->of_node, TC358775_LVDS_OUT0,
-                                         0, &panel, NULL);
-       if (ret < 0)
-               return ret;
-       if (!panel)
-               return -ENODEV;
-
-       tc->panel_bridge = devm_drm_panel_bridge_add(dev, panel);
+       tc->panel_bridge = devm_drm_of_get_bridge(dev, dev->of_node,
+                                                 TC358775_LVDS_OUT0, 0);
        if (IS_ERR(tc->panel_bridge))
                return PTR_ERR(tc->panel_bridge);