mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 02:27:02 +07:00
75fb968b83
Due to the removal of several omapdrm display drivers, the omapdss HPD, detected and EDID operations are not used anymore. Remove them and all related code. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Tested-by: Sebastian Reichel <sebastian.reichel@collabora.com> Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200226112514.12455-41-laurent.pinchart@ideasonboard.com
29 lines
718 B
C
29 lines
718 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* omap_connector.h -- OMAP DRM Connector
|
|
*
|
|
* Copyright (C) 2011 Texas Instruments
|
|
* Author: Rob Clark <rob@ti.com>
|
|
*/
|
|
|
|
#ifndef __OMAPDRM_CONNECTOR_H__
|
|
#define __OMAPDRM_CONNECTOR_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
enum drm_mode_status;
|
|
|
|
struct drm_connector;
|
|
struct drm_device;
|
|
struct drm_encoder;
|
|
struct omap_dss_device;
|
|
|
|
struct drm_connector *omap_connector_init(struct drm_device *dev,
|
|
struct omap_dss_device *output,
|
|
struct drm_encoder *encoder);
|
|
enum drm_mode_status omap_connector_mode_fixup(struct omap_dss_device *dssdev,
|
|
const struct drm_display_mode *mode,
|
|
struct drm_display_mode *adjusted_mode);
|
|
|
|
#endif /* __OMAPDRM_CONNECTOR_H__ */
|