diff options
author | Emil Velikov <emil.velikov@collabora.com> | 2019-01-14 11:54:07 +0300 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2019-02-13 20:40:13 +0300 |
commit | f16bb4d280c753ab4bf76d8765a33eb61633d711 (patch) | |
tree | 795345ba9f5eb98e4ccc81e79d9461bb2530fd8e /include/drm | |
parent | 4acc5be3cd89cc4132d8456144ee066905a58e41 (diff) | |
download | linux-f16bb4d280c753ab4bf76d8765a33eb61633d711.tar.xz |
drm: annotate drm_core_check_feature() dev arg. as const
This static inline function doesn't modify any state.
Cc: intel-gfx@lists.freedesktop.org
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20190114085408.15933-1-emil.l.velikov@gmail.com
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_drv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_drv.h b/include/drm/drm_drv.h index 35af23f5fa0d..eca73330ffaf 100644 --- a/include/drm/drm_drv.h +++ b/include/drm/drm_drv.h @@ -666,7 +666,7 @@ static inline bool drm_dev_is_unplugged(struct drm_device *dev) * * Returns true if the @feature is supported, false otherwise. */ -static inline bool drm_core_check_feature(struct drm_device *dev, u32 feature) +static inline bool drm_core_check_feature(const struct drm_device *dev, u32 feature) { return dev->driver->driver_features & dev->driver_features & feature; } |