diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2003-03-28 13:47:41 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2003-03-28 13:47:41 +0000 |
commit | 79db46ccef7abf8d18bcf84bd72bda4aca842b86 (patch) | |
tree | 0628ee4ed11e15368a5a3715102907d54e7aa04e /linux/drm_os_linux.h | |
parent | 7c9631e5928850e4dc85644fb6a5511f94540ad8 (diff) |
merged from trunkdrm-filp-1-20020328drm-filp-0-1-branch
Diffstat (limited to 'linux/drm_os_linux.h')
-rw-r--r-- | linux/drm_os_linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drm_os_linux.h b/linux/drm_os_linux.h index 19842925..b57efd34 100644 --- a/linux/drm_os_linux.h +++ b/linux/drm_os_linux.h @@ -43,7 +43,7 @@ /* malloc/free without the overhead of DRM(alloc) */ #define DRM_MALLOC(x) kmalloc(x, GFP_KERNEL) -#define DRM_FREE(x) kfree(x) +#define DRM_FREE(x,size) kfree(x) #define DRM_GETSAREA() \ do { \ |