drm: this u32 should be a dma_addr_t

doesn't fix anything but just making it consistent
This commit is contained in:
Dave Airlie 2008-03-16 12:56:11 +10:00
parent 1ea8a470fe
commit 76946ed83d

View file

@ -137,7 +137,8 @@ int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *ga
struct drm_sg_mem *entry = dev->sg;
void *address = NULL;
unsigned long pages;
u32 *pci_gart, page_base, bus_address = 0;
u32 *pci_gart, page_base;
dma_addr_t bus_address = 0;
int i, j, ret = 0;
int order;
int max_pages;