aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_crtc.c
diff options
context:
space:
mode:
authorJoonas Lahtinen <joonas.lahtinen@linux.intel.com>2015-10-01 03:00:58 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-10-05 09:32:51 -0400
commit14152c8d30bbe5155d0438feb0a1931aee0e5bce (patch)
tree95413eb6b55273473746f8d65a8c93720c75eaad /drivers/gpu/drm/drm_crtc.c
parent6220907089cc3eb4ab2fa7073bbf617b019666c5 (diff)
drm: Use DRM_ROTATE_MASK and DRM_REFLECT_MASK
Avoid magic numbers and use the introduced defines. Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc.c')
-rw-r--r--drivers/gpu/drm/drm_crtc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
index e600a5fb2b60..e7c842289568 100644
--- a/drivers/gpu/drm/drm_crtc.c
+++ b/drivers/gpu/drm/drm_crtc.c
@@ -5629,7 +5629,8 @@ unsigned int drm_rotation_simplify(unsigned int rotation,
5629{ 5629{
5630 if (rotation & ~supported_rotations) { 5630 if (rotation & ~supported_rotations) {
5631 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y); 5631 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5632 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4); 5632 rotation = (rotation & DRM_REFLECT_MASK) |
5633 BIT((ffs(rotation & DRM_ROTATE_MASK) + 1) % 4);
5633 } 5634 }
5634 5635
5635 return rotation; 5636 return rotation;