xref: /linux/include/drm/drm_bridge_helper.h (revision 69050f8d6d075dc01af7a5f2f550a8067510366f)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 
3 #ifndef __DRM_BRIDGE_HELPER_H_
4 #define __DRM_BRIDGE_HELPER_H_
5 
6 struct drm_bridge;
7 struct drm_modeset_acquire_ctx;
8 
9 int drm_bridge_helper_reset_crtc(struct drm_bridge *bridge,
10 				 struct drm_modeset_acquire_ctx *ctx);
11 
12 #endif // __DRM_BRIDGE_HELPER_H_
13