From: Dave Airlie Date: Wed, 14 May 2008 12:48:12 +0000 (+1000) Subject: ati_pcigart: oops wrong way around not that it actually mattered X-Git-Tag: libdrm-2.3.1~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a09c0bbe11004a020d0fac47f7517db55fb91754;p=platform%2Fupstream%2Flibdrm.git ati_pcigart: oops wrong way around not that it actually mattered --- diff --git a/linux-core/ati_pcigart.c b/linux-core/ati_pcigart.c index f7752b5..09251ac 100644 --- a/linux-core/ati_pcigart.c +++ b/linux-core/ati_pcigart.c @@ -161,12 +161,12 @@ int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *ga switch(gart_info->gart_reg_if) { case DRM_ATI_GART_IGP: page_base |= (upper_32_bits(entry_addr) & 0xff) << 4; - page_base |= ATI_PCIE_READ | ATI_PCIE_WRITE; + page_base |= 0xc; break; case DRM_ATI_GART_PCIE: page_base >>= 8; page_base |= (upper_32_bits(entry_addr) & 0xff) << 24; - page_base |= 0xc; + page_base |= ATI_PCIE_READ | ATI_PCIE_WRITE; break; default: case DRM_ATI_GART_PCI: