]> Git Repo - linux.git/commitdiff
drm/bridge: ti-tfp410: Update drm_connector_init_with_ddc() error message
authorGeert Uytterhoeven <[email protected]>
Wed, 15 Jan 2020 12:56:53 +0000 (13:56 +0100)
committerNeil Armstrong <[email protected]>
Mon, 10 Feb 2020 09:20:37 +0000 (10:20 +0100)
The code was changed to call drm_connector_init_with_ddc() instead of
drm_connector_init(), but the corresponding error message was not
updated.

Fixes: cfb444552926989f ("drm/bridge: ti-tfp410: Provide ddc symlink in connector sysfs directory")
Signed-off-by: Geert Uytterhoeven <[email protected]>
Reviewed-by: Neil Armstrong <[email protected]>
Signed-off-by: Neil Armstrong <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/bridge/ti-tfp410.c

index 6f6d6d1e60ae9162d94c45e8e4e58cc6d389448b..f195a4732e0badac04f0864def9999bd1620b575 100644 (file)
@@ -140,7 +140,8 @@ static int tfp410_attach(struct drm_bridge *bridge)
                                          dvi->connector_type,
                                          dvi->ddc);
        if (ret) {
-               dev_err(dvi->dev, "drm_connector_init() failed: %d\n", ret);
+               dev_err(dvi->dev, "drm_connector_init_with_ddc() failed: %d\n",
+                       ret);
                return ret;
        }
 
This page took 0.058437 seconds and 4 git commands to generate.