remove register usage

main
Dave Airlie 2007-04-28 15:04:49 +10:00
parent 9f9c19065c
commit e9b3acd257
1 changed files with 1 additions and 1 deletions

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);