dect
/
linux-2.6
Archived
13
0
Fork 0

drm: fix drm PCIGART

PCI Express support broke PCIGART

Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
Dave Airlie 2005-09-30 19:12:46 +10:00 committed by Dave Airlie
parent b3a8363989
commit 3d5efad953
1 changed files with 2 additions and 1 deletions

View File

@ -205,7 +205,8 @@ int drm_ati_pcigart_init(drm_device_t * dev, drm_ati_pcigart_info * gart_info)
if (gart_info->is_pcie)
*pci_gart = (cpu_to_le32(page_base) >> 8) | 0xc;
else
*pci_gart++ = cpu_to_le32(page_base);
*pci_gart = cpu_to_le32(page_base);
*pci_gart++;
page_base += ATI_PCIGART_PAGE_SIZE;
}
}