summaryrefslogtreecommitdiffstats
path: root/include/drm/drm_bridge.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2017-07-18 14:05:06 -0700
committerEric Anholt <eric@anholt.net>2017-07-26 12:19:47 -0700
commit67022227ffb1f588e70deeccc9246ec93e26f980 (patch)
tree6193b4a857ef06e6b285ed71786ba56bd4e0923d /include/drm/drm_bridge.h
parent15b4511a4af633dca0762ae5646fdf05f1dea99a (diff)
downloadlinux-0-day-67022227ffb1f588e70deeccc9246ec93e26f980.tar.gz
linux-0-day-67022227ffb1f588e70deeccc9246ec93e26f980.tar.xz
drm/bridge: Add a devm_ allocator for panel bridge.
This will let drivers reduce the error cleanup they need, in particular the "is_panel_bridge" flag. v2: Slight cleanup of remove function by Andrzej Signed-off-by: Eric Anholt <eric@anholt.net> Reviewed-by: Andrzej Hajda <a.hajda@samsung.com> Reviewed-by: Philippe Cornu <philippe.cornu@st.com> Tested-by: Philippe Cornu <philippe.cornu@st.com> Link: https://patchwork.freedesktop.org/patch/msgid/20170718210510.12229-2-eric@anholt.net
Diffstat (limited to 'include/drm/drm_bridge.h')
-rw-r--r--include/drm/drm_bridge.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/drm_bridge.h b/include/drm/drm_bridge.h
index 1dc94d5392e27..6522d4cbc9d9d 100644
--- a/include/drm/drm_bridge.h
+++ b/include/drm/drm_bridge.h
@@ -268,6 +268,9 @@ void drm_bridge_enable(struct drm_bridge *bridge);
struct drm_bridge *drm_panel_bridge_add(struct drm_panel *panel,
u32 connector_type);
void drm_panel_bridge_remove(struct drm_bridge *bridge);
+struct drm_bridge *devm_drm_panel_bridge_add(struct device *dev,
+ struct drm_panel *panel,
+ u32 connector_type);
#endif
#endif