Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
Note: File does not exist in v5.4.
 1/* SPDX-License-Identifier: GPL-2.0+ */
 2/*
 3 * Copyright (C) 2019 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
 4 */
 5
 6#ifndef __DRM_BRIDGE_CONNECTOR_H__
 7#define __DRM_BRIDGE_CONNECTOR_H__
 8
 9struct drm_connector;
10struct drm_device;
11struct drm_encoder;
12
13void drm_bridge_connector_enable_hpd(struct drm_connector *connector);
14void drm_bridge_connector_disable_hpd(struct drm_connector *connector);
15struct drm_connector *drm_bridge_connector_init(struct drm_device *drm,
16						struct drm_encoder *encoder);
17
18#endif /* __DRM_BRIDGE_CONNECTOR_H__ */