diff options
author | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2005-08-15 07:30:05 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2005-08-15 07:30:05 +0000 |
commit | eec95d13f408f5489fe8c6b611d080c275c541fb (patch) | |
tree | d26994d7d74855cfd445c6bae85d9c1cddf313a1 /src/mga_dri.c | |
parent | d4b7edf86b63fb9af377bc4605381c8016a683a5 (diff) |
Egbert's 64bit fixes for mixed 32/64bit clients
Diffstat (limited to 'src/mga_dri.c')
-rw-r--r-- | src/mga_dri.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mga_dri.c b/src/mga_dri.c index f562edc..c1c357f 100644 --- a/src/mga_dri.c +++ b/src/mga_dri.c @@ -731,7 +731,7 @@ static Bool MGADRIBootstrapDMA(ScreenPtr pScreen) return FALSE; } xf86DrvMsg( pScreen->myNum, X_INFO, - "[agp] %d kB allocated with handle 0x%08lx\n", + "[agp] %d kB allocated with handle 0x%08x\n", pMGADRIServer->agp.size/1024, pMGADRIServer->agp.handle ); if ( drmAgpBind( pMga->drmFD, pMGADRIServer->agp.handle, 0 ) < 0 ) { @@ -753,7 +753,7 @@ static Bool MGADRIBootstrapDMA(ScreenPtr pScreen) return FALSE; } xf86DrvMsg( pScreen->myNum, X_INFO, - "[agp] WARP microcode handle = 0x%08lx\n", + "[agp] WARP microcode handle = 0x%08x\n", pMGADRIServer->warp.handle ); /* Primary DMA space @@ -768,7 +768,7 @@ static Bool MGADRIBootstrapDMA(ScreenPtr pScreen) return FALSE; } xf86DrvMsg( pScreen->myNum, X_INFO, - "[agp] Primary DMA handle = 0x%08lx\n", + "[agp] Primary DMA handle = 0x%08x\n", pMGADRIServer->primary.handle ); /* DMA buffers @@ -783,7 +783,7 @@ static Bool MGADRIBootstrapDMA(ScreenPtr pScreen) return FALSE; } xf86DrvMsg( pScreen->myNum, X_INFO, - "[agp] DMA buffers handle = 0x%08lx\n", + "[agp] DMA buffers handle = 0x%08x\n", pMGADRIServer->buffers.handle ); count = drmAddBufs( pMga->drmFD, @@ -815,7 +815,7 @@ static Bool MGADRIBootstrapDMA(ScreenPtr pScreen) } xf86DrvMsg( pScreen->myNum, X_INFO, - "[agp] agpTexture handle = 0x%08lx\n", + "[agp] agpTexture handle = 0x%08x\n", pMGADRIServer->agpTextures.handle ); xf86DrvMsg( pScreen->myNum, X_INFO, "[agp] agpTexture size: %d kb\n", pMGADRIServer->agpTextures.size/1024 ); @@ -832,7 +832,7 @@ static Bool MGADRIBootstrapDMA(ScreenPtr pScreen) return FALSE; } xf86DrvMsg( pScreen->myNum, X_INFO, - "[drm] Registers handle = 0x%08lx\n", + "[drm] Registers handle = 0x%08x\n", pMGADRIServer->registers.handle ); pMGADRIServer->status.size = SAREA_MAX; @@ -845,7 +845,7 @@ static Bool MGADRIBootstrapDMA(ScreenPtr pScreen) return FALSE; } xf86DrvMsg( pScreen->myNum, X_INFO, - "[drm] Status handle = 0x%08lx\n", + "[drm] Status handle = 0x%08x\n", pMGADRIServer->status.handle ); } |