mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-22 06:36:17 +00:00
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__
|