Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.3 13 lines 226 B view raw
1#ifndef __UDL_CONNECTOR_H__ 2#define __UDL_CONNECTOR_H__ 3 4#include <drm/drm_crtc.h> 5 6struct udl_drm_connector { 7 struct drm_connector connector; 8 /* last udl_detect edid */ 9 struct edid *edid; 10}; 11 12 13#endif //__UDL_CONNECTOR_H__