|
@@ -326,7 +326,7 @@ static int drm_addmap_core(struct drm_device * dev, resource_size_t offset,
|
|
|
* As we're limiting the address to 2^32-1 (or less),
|
|
|
* casting it down to 32 bits is no problem, but we
|
|
|
* need to point to a 64bit variable first. */
|
|
|
- dmah = drm_pci_alloc(dev, map->size, map->size, 0xffffffffUL);
|
|
|
+ dmah = drm_pci_alloc(dev, map->size, map->size);
|
|
|
if (!dmah) {
|
|
|
kfree(map);
|
|
|
return -ENOMEM;
|
|
@@ -885,7 +885,7 @@ int drm_addbufs_pci(struct drm_device * dev, struct drm_buf_desc * request)
|
|
|
|
|
|
while (entry->buf_count < count) {
|
|
|
|
|
|
- dmah = drm_pci_alloc(dev, PAGE_SIZE << page_order, 0x1000, 0xfffffffful);
|
|
|
+ dmah = drm_pci_alloc(dev, PAGE_SIZE << page_order, 0x1000);
|
|
|
|
|
|
if (!dmah) {
|
|
|
/* Set count correctly so we free the proper amount. */
|