i965/drm: Use ALIGN, not ROUND_UP_TO.

ROUND_UP_TO handles a NPOT alignment, but all the alignments we use
are power of two anyway, so there's no need.

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Kenneth Graunke 2017-03-22 11:12:27 -07:00
parent 1d476e64e5
commit c5cdb0f405

View file

@ -319,7 +319,7 @@ drm_bacon_gem_bo_tile_size(drm_bacon_bufmgr_gem *bufmgr_gem, unsigned long size,
return size;
/* 965+ just need multiples of page size for tiling */
return ROUND_UP_TO(size, 4096);
return ALIGN(size, 4096);
}
/*
@ -345,7 +345,7 @@ drm_bacon_gem_bo_tile_pitch(drm_bacon_bufmgr_gem *bufmgr_gem,
tile_width = 128;
/* 965 is flexible */
return ROUND_UP_TO(pitch, tile_width);
return ALIGN(pitch, tile_width);
}
static struct drm_bacon_gem_bo_bucket *