diff options
author | Eric Anholt <anholt@freebsd.org> | 2004-09-12 23:01:24 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2004-09-12 23:01:24 +0000 |
commit | ab50679aabdda9e6197568f745d02fe1e65c7a24 (patch) | |
tree | 9b71a0c65e5243a6e47d575987e2e569eba491a2 | |
parent | 2d069b1d1950b5f6f9140e5573e349e6559251e6 (diff) |
Fix a bad argument missed in the previous commit for ATIDRIDMA* functions.
-rw-r--r-- | hw/kdrive/ati/ati_dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/kdrive/ati/ati_dri.c b/hw/kdrive/ati/ati_dri.c index 773f49467..2301258d0 100644 --- a/hw/kdrive/ati/ati_dri.c +++ b/hw/kdrive/ati/ati_dri.c @@ -952,7 +952,7 @@ ATIDRICloseScreen(ScreenPtr pScreen) atis->indirectBuffer = NULL; atis->indirectStart = 0; } - ATIDRIDMAStop(pScreen); + ATIDRIDMAStop(atis); if (atis->irqEnabled) { drmCtlUninstHandler(atic->drmFd); |