drm/radeon: use ALIGN instead of open coding it

Cc: Jerome Glisse <jglisse@redhat.com>
Cc: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Matt Turner 2010-02-25 04:23:31 +00:00 committed by Dave Airlie
parent 32b3c2abaf
commit d964fc54ed
2 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ set_render_target(drm_radeon_private_t *dev_priv, int format, int w, int h, u64
RING_LOCALS;
DRM_DEBUG("\n");
h = (h + 7) & ~7;
h = ALIGN(h, 8);
if (h < 8)
h = 8;