Lines Matching defs:drm_master
660 struct drm_master { struct
662 struct kref refcount; /* refcount for this master */
664 struct list_head head; /**< each minor contains a list of masters */
665 struct drm_minor *minor; /**< link back to minor we are a master for */
667 char *unique; /**< Unique identifier: e.g., busid */
668 int unique_len; /**< Length of unique field */
669 int unique_size; /**< amount allocated */
671 int blocked; /**< Blocked due to VC switch? */
675 struct drm_open_hash magiclist;
676 struct list_head magicfree;
679 struct drm_lock_data lock; /**< Information on hardware lock */
703 int (*set_busid)(struct drm_device *dev, struct drm_master *master); argument