mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
afdfc4c6f5
Fixed problem with DisplayLink and DisplayLink certified adapers in drm/udl driver when adapter doesn't want to work if it was initialized with disconnected DVI cable by enabling drm connectot polling and updating current connector's state. Signed-off-by: Robert Tarasov <tutankhamen@chromium.org> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Link: https://patchwork.freedesktop.org/patch/msgid/20171013001350.172155-1-tutankhamen@chromium.org
14 lines
226 B
C
14 lines
226 B
C
#ifndef __UDL_CONNECTOR_H__
|
|
#define __UDL_CONNECTOR_H__
|
|
|
|
#include <drm/drm_crtc.h>
|
|
|
|
struct udl_drm_connector {
|
|
struct drm_connector connector;
|
|
/* last udl_detect edid */
|
|
struct edid *edid;
|
|
};
|
|
|
|
|
|
#endif //__UDL_CONNECTOR_H__
|