diff options
author | Jon Smirl <[email protected]> | 2004-06-29 04:50:29 +0000 |
---|---|---|
committer | Jon Smirl <[email protected]> | 2004-06-29 04:50:29 +0000 |
commit | c61c7cb8e4100476d5feb976c39a23b1ed7b564a (patch) | |
tree | dae0f702901adf64da9b1ead97df078b90e00725 /src/mesa/drivers/dri/r128 | |
parent | 7c1207a2ec3f548921caad2e41807f3df9e1536d (diff) |
This should make most linux-solo drivers work again. Mainly a fix
for changing SAREA size form DRM_PAGE_SIZE to SAREA_MAX. fb driver
is still broken.
Diffstat (limited to 'src/mesa/drivers/dri/r128')
-rw-r--r-- | src/mesa/drivers/dri/r128/server/r128_dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r128/server/r128_dri.c b/src/mesa/drivers/dri/r128/server/r128_dri.c index 6d577483cc0..fff2549aefb 100644 --- a/src/mesa/drivers/dri/r128/server/r128_dri.c +++ b/src/mesa/drivers/dri/r128/server/r128_dri.c @@ -747,7 +747,7 @@ static GLboolean R128DRIScreenInit(DRIDriverContext *ctx) } info->registerSize = ctx->MMIOSize; - ctx->shared.SAREASize = DRM_PAGE_SIZE; + ctx->shared.SAREASize = SAREA_MAX; /* Note that drmOpen will try to load the kernel module, if needed. */ ctx->drmFD = drmOpen("r128", NULL ); |