aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drmP.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/drm/drmP.h')
-rw-r--r--include/drm/drmP.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 2242968e7deb..3cf9f46ce2e6 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -1207,6 +1207,11 @@ static inline bool drm_is_render_client(struct drm_file *file_priv)
1207 return file_priv->minor->type == DRM_MINOR_RENDER; 1207 return file_priv->minor->type == DRM_MINOR_RENDER;
1208} 1208}
1209 1209
1210static inline bool drm_is_control_client(const struct drm_file *file_priv)
1211{
1212 return file_priv->minor->type == DRM_MINOR_CONTROL;
1213}
1214
1210/******************************************************************/ 1215/******************************************************************/
1211/** \name Internal function definitions */ 1216/** \name Internal function definitions */
1212/*@{*/ 1217/*@{*/