diff options
| author | Ian Romanick <idr@us.ibm.com> | 2007-10-10 15:25:30 -0700 | 
|---|---|---|
| committer | Ian Romanick <idr@us.ibm.com> | 2007-10-10 15:25:47 -0700 | 
| commit | 83da774b192966b8c3f00b531ecfd4ec2b5eceaa (patch) | |
| tree | 34acd8654383c3dbb8ce28cecd82ae22c7dfc556 /linux-core/xgi_pcie.c | |
| parent | bf126f4925bf1601935e085be2feeb004b474a05 (diff) | |
Fix command list submission on big-endian.
Diffstat (limited to 'linux-core/xgi_pcie.c')
| -rw-r--r-- | linux-core/xgi_pcie.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/linux-core/xgi_pcie.c b/linux-core/xgi_pcie.c index 4becf35b..a7d3ea24 100644 --- a/linux-core/xgi_pcie.c +++ b/linux-core/xgi_pcie.c @@ -40,8 +40,7 @@ void xgi_gart_flush(struct drm_device *dev)  	DRM_WRITE8(info->mmio_map, 0xB00C, temp & ~0x02);  	/* Set GART base address to HW */ -	DRM_WRITE32(info->mmio_map, 0xB034, -		    cpu_to_le32(info->gart_info.bus_addr)); +	DRM_WRITE32(info->mmio_map, 0xB034, info->gart_info.bus_addr);  	/* Flush GART table. */  	DRM_WRITE8(info->mmio_map, 0xB03F, 0x40); | 
