Skip to content

Commit

Permalink
drm/stm: ltdc: remove bridge from driver internal structure
Browse files Browse the repository at this point in the history
With a call to drm_of_panel_bridge_remove() we could remove the bridge
without store it in ldtc internal driver structure.

Signed-off-by: Benjamin Gaignard <[email protected]>
Reviewed-by: Philippe Cornu <[email protected]>
Tested-by: Philippe Cornu <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
Benjamin-Gaignard committed Oct 10, 2017
1 parent c70087e commit 08de7af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
16 changes: 5 additions & 11 deletions drivers/gpu/drm/stm/ltdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -791,9 +791,8 @@ static const struct drm_encoder_funcs ltdc_encoder_funcs = {
.destroy = drm_encoder_cleanup,
};

static int ltdc_encoder_init(struct drm_device *ddev)
static int ltdc_encoder_init(struct drm_device *ddev, struct drm_bridge *bridge)
{
struct ltdc_device *ldev = ddev->dev_private;
struct drm_encoder *encoder;
int ret;

Expand All @@ -807,7 +806,7 @@ static int ltdc_encoder_init(struct drm_device *ddev)
drm_encoder_init(ddev, encoder, &ltdc_encoder_funcs,
DRM_MODE_ENCODER_DPI, NULL);

ret = drm_bridge_attach(encoder, ldev->bridge, NULL);
ret = drm_bridge_attach(encoder, bridge, NULL);
if (ret) {
drm_encoder_cleanup(encoder);
return -EINVAL;
Expand Down Expand Up @@ -936,12 +935,9 @@ int ltdc_load(struct drm_device *ddev)
ret = PTR_ERR(bridge);
goto err;
}
ldev->is_panel_bridge = true;
}

ldev->bridge = bridge;

ret = ltdc_encoder_init(ddev);
ret = ltdc_encoder_init(ddev, bridge);
if (ret) {
DRM_ERROR("Failed to init encoder\n");
goto err;
Expand Down Expand Up @@ -972,8 +968,7 @@ int ltdc_load(struct drm_device *ddev)
return 0;

err:
if (ldev->is_panel_bridge)
drm_panel_bridge_remove(bridge);
drm_panel_bridge_remove(bridge);

clk_disable_unprepare(ldev->pixel_clk);

Expand All @@ -986,8 +981,7 @@ void ltdc_unload(struct drm_device *ddev)

DRM_DEBUG_DRIVER("\n");

if (ldev->is_panel_bridge)
drm_panel_bridge_remove(ldev->bridge);
drm_of_panel_bridge_remove(ddev->dev->of_node, 0, 0);

clk_disable_unprepare(ldev->pixel_clk);
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/gpu/drm/stm/ltdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ struct ltdc_device {
struct drm_fbdev_cma *fbdev;
void __iomem *regs;
struct clk *pixel_clk; /* lcd pixel clock */
struct drm_bridge *bridge;
bool is_panel_bridge;
struct mutex err_lock; /* protecting error_status */
struct ltdc_caps caps;
u32 error_status;
Expand Down

0 comments on commit 08de7af

Please sign in to comment.