diff options
author | Dave Airlie <airlied@starflyer.(none)> | 2005-07-10 04:17:42 -0400 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2005-07-10 04:17:42 -0400 |
commit | b5d499cfdeebcb71f00f3513045796ccae718140 (patch) | |
tree | 009eccb0fc8657fda446851f7c7df497ef3470b6 /drivers/char/drm/drm_agpsupport.c | |
parent | 93f453f3ffd8f4dbb0311b58b854e7655da3d601 (diff) |
drm: make drm_alloc_agp take a dev arg.
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/drm_agpsupport.c')
-rw-r--r-- | drivers/char/drm/drm_agpsupport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/drm/drm_agpsupport.c b/drivers/char/drm/drm_agpsupport.c index d413da00329d..ffb4acaefe84 100644 --- a/drivers/char/drm/drm_agpsupport.c +++ b/drivers/char/drm/drm_agpsupport.c | |||
@@ -229,7 +229,7 @@ int drm_agp_alloc(struct inode *inode, struct file *filp, | |||
229 | pages = (request.size + PAGE_SIZE - 1) / PAGE_SIZE; | 229 | pages = (request.size + PAGE_SIZE - 1) / PAGE_SIZE; |
230 | type = (u32) request.type; | 230 | type = (u32) request.type; |
231 | 231 | ||
232 | if (!(memory = drm_alloc_agp(dev->agp->bridge, pages, type))) { | 232 | if (!(memory = drm_alloc_agp(dev, pages, type))) { |
233 | drm_free(entry, sizeof(*entry), DRM_MEM_AGPLISTS); | 233 | drm_free(entry, sizeof(*entry), DRM_MEM_AGPLISTS); |
234 | return -ENOMEM; | 234 | return -ENOMEM; |
235 | } | 235 | } |