mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	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
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			226 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 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__
 |