mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
4c00ac500d
Now as all drivers stopped calling drm_bridge_connector_enable_hpd() and drm_bridge_connector_disable_hpd() it is safe to remove them complelely. Rename our internal helpers to remove the underscore prefix. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20221102180705.459294-8-dmitry.baryshkov@linaro.org
16 lines
405 B
C
16 lines
405 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2019 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
*/
|
|
|
|
#ifndef __DRM_BRIDGE_CONNECTOR_H__
|
|
#define __DRM_BRIDGE_CONNECTOR_H__
|
|
|
|
struct drm_connector;
|
|
struct drm_device;
|
|
struct drm_encoder;
|
|
|
|
struct drm_connector *drm_bridge_connector_init(struct drm_device *drm,
|
|
struct drm_encoder *encoder);
|
|
|
|
#endif /* __DRM_BRIDGE_CONNECTOR_H__ */
|