diff options
author | Eric Anholt <[email protected]> | 2017-08-02 13:32:42 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-08-08 13:20:11 -0700 |
commit | 97ee731da8dc83e98db06848c6f27188613356ce (patch) | |
tree | 63754e49380694b6e876b86b25ee79867bc03430 | |
parent | 2cbf59fd9026ac82b1c7429bb0de930a42d82063 (diff) |
drm/vc4: Fix errant drm_bridge_remove() in DSI.
drm_bridge_remove() is for unregistering a bridge driver, not for
detaching a bridge from its consumer.
Fixes: 656fa22f9cea ("drm/vc4: Switch DSI to the panel-bridge layer, and support bridges.")
Signed-off-by: Eric Anholt <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Acked-by: Noralf Trønnes <[email protected]>
Reviewed-by: Boris Brezillon <[email protected]>
-rw-r--r-- | drivers/gpu/drm/vc4/vc4_dsi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_dsi.c b/drivers/gpu/drm/vc4/vc4_dsi.c index 13481bb6322f..d1e0dc908048 100644 --- a/drivers/gpu/drm/vc4/vc4_dsi.c +++ b/drivers/gpu/drm/vc4/vc4_dsi.c @@ -1636,7 +1636,6 @@ static void vc4_dsi_unbind(struct device *dev, struct device *master, pm_runtime_disable(dev); - drm_bridge_remove(dsi->bridge); vc4_dsi_encoder_destroy(dsi->encoder); mipi_dsi_host_unregister(&dsi->dsi_host); |