mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
13 lines
298 B
C
13 lines
298 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#ifndef __DRM_BRIDGE_HELPER_H_
|
||
|
#define __DRM_BRIDGE_HELPER_H_
|
||
|
|
||
|
struct drm_bridge;
|
||
|
struct drm_modeset_acquire_ctx;
|
||
|
|
||
|
int drm_bridge_helper_reset_crtc(struct drm_bridge *bridge,
|
||
|
struct drm_modeset_acquire_ctx *ctx);
|
||
|
|
||
|
#endif // __DRM_BRIDGE_HELPER_H_
|