remove register usage

This commit is contained in:
Dave Airlie 2007-04-28 15:04:49 +10:00
parent 9f9c19065c
commit e9b3acd257

View file

@ -47,7 +47,7 @@ static struct {
static inline size_t drm_size_align(size_t size) {
register size_t tmpSize = 4;
size_t tmpSize = 4;
if (size > PAGE_SIZE)
return PAGE_ALIGN(size);