diff options
author | Dave Airlie <airlied@linux.ie> | 2007-04-28 15:04:49 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-04-28 15:07:43 +1000 |
commit | e9b3acd25733517420f7b9fea01cfd529d909348 (patch) | |
tree | e08a258ea6f5a2a3b17a456dbfb29a20d37ab965 /linux-core/drm_memory.c | |
parent | 9f9c19065cecde16aa2994b6f777336a6e5f3409 (diff) |
remove register usage
Diffstat (limited to 'linux-core/drm_memory.c')
-rw-r--r-- | linux-core/drm_memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_memory.c b/linux-core/drm_memory.c index 86c869f1..759e1f15 100644 --- a/linux-core/drm_memory.c +++ b/linux-core/drm_memory.c @@ -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); |