diff options
author | Maarten Lankhorst <maarten.lankhorst@linux.intel.com> | 2016-10-13 10:38:11 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-10-17 08:12:05 +0200 |
commit | 1dfdb0ed34b28b086ffc1f9fb9f538ab60298029 (patch) | |
tree | e1ea3c30c11a6ad299225b3a7275f50d020ce89b /include/drm/drm_crtc.h | |
parent | drm: atomic: Clarify documentation around drm_atomic_crtc_needs_modeset (diff) | |
download | linux-1dfdb0ed34b28b086ffc1f9fb9f538ab60298029.tar.xz linux-1dfdb0ed34b28b086ffc1f9fb9f538ab60298029.zip |
drm/crtc: constify drm_crtc_mask parameter
Now that drm_crtc_index takes a const, the same can be done for drm_crtc_mask.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/6e32d013-6fee-34ad-f8d2-59139f3dc4c1@linux.intel.com
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 92246619947c..4633915cb51b 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -1359,7 +1359,7 @@ static inline unsigned int drm_crtc_index(const struct drm_crtc *crtc) * Given a registered CRTC, return the mask bit of that CRTC for an * encoder's possible_crtcs field. */ -static inline uint32_t drm_crtc_mask(struct drm_crtc *crtc) +static inline uint32_t drm_crtc_mask(const struct drm_crtc *crtc) { return 1 << drm_crtc_index(crtc); } |