drm/bridge/tc358764: fix drm helper name
authorAndrzej Hajda <a.hajda@samsung.com>
Fri, 27 Jul 2018 09:48:59 +0000 (11:48 +0200)
committerSean Paul <seanpaul@chromium.org>
Mon, 30 Jul 2018 17:37:48 +0000 (13:37 -0400)
Recently drm_mode_connector_attach_encoder changed it's name. The change
was not noticed by bridge author, as a result gcc reports compile error
on next branch.

Fixes: f38b7cca6d0e ("drm/bridge: tc358764: Add DSI to LVDS bridge driver")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20180727094859.27727-1-a.hajda@samsung.com
drivers/gpu/drm/bridge/tc358764.c

index 779bc5f..ee6b98e 100644 (file)
@@ -361,7 +361,7 @@ static int tc358764_attach(struct drm_bridge *bridge)
 
        drm_connector_helper_add(&ctx->connector,
                                 &tc358764_connector_helper_funcs);
-       drm_mode_connector_attach_encoder(&ctx->connector, bridge->encoder);
+       drm_connector_attach_encoder(&ctx->connector, bridge->encoder);
        drm_panel_attach(ctx->panel, &ctx->connector);
        ctx->connector.funcs->reset(&ctx->connector);
        drm_fb_helper_add_one_connector(drm->fb_helper, &ctx->connector);