OSDN Git Service

drm/bridge: Add a function to abstract away panels
authorMaxime Ripard <maxime@cerno.tech>
Fri, 10 Sep 2021 13:09:39 +0000 (15:09 +0200)
committerMaxime Ripard <maxime@cerno.tech>
Tue, 14 Sep 2021 08:39:01 +0000 (10:39 +0200)
commit87ea95808d53e56b03e620e8f8f3add48899a88d
treeac87c3143bb1ac322e60fa16a8e48d843eaadebc
parent2f76520561d01a5f37e6d6ed2c2e441b6a355a96
drm/bridge: Add a function to abstract away panels

Display drivers so far need to have a lot of boilerplate to first
retrieve either the panel or bridge that they are connected to using
drm_of_find_panel_or_bridge(), and then either deal with each with ad-hoc
functions or create a drm panel bridge through drm_panel_bridge_add.

In order to reduce the boilerplate and hopefully create a path of least
resistance towards using the DRM panel bridge layer, let's create the
function devm_drm_of_get_bridge() to reduce that boilerplate.

Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210910130941.1740182-2-maxime@cerno.tech
drivers/gpu/drm/drm_bridge.c
drivers/gpu/drm/drm_of.c
include/drm/drm_bridge.h