summaryrefslogtreecommitdiff
path: root/shared-core/nouveau_irq.c
diff options
context:
space:
mode:
authorStephane Marchesin <marchesin@icps.u-strasbg.fr>2006-10-12 21:18:55 +0200
committerStephane Marchesin <marchesin@icps.u-strasbg.fr>2006-10-12 21:18:55 +0200
commita9c6c3f21d90257db94536f202b3a1f03896b2f7 (patch)
treee9bc37c914d8dcba58165c54772231c806588a8d /shared-core/nouveau_irq.c
parent7ef44b2b8dd1745f5b228e6161ebd989844c3088 (diff)
Oops.
Diffstat (limited to 'shared-core/nouveau_irq.c')
-rw-r--r--shared-core/nouveau_irq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-core/nouveau_irq.c b/shared-core/nouveau_irq.c
index 4e58540d..c3755d7a 100644
--- a/shared-core/nouveau_irq.c
+++ b/shared-core/nouveau_irq.c
@@ -145,11 +145,11 @@ static void nouveau_fifo_irq_handler(drm_device_t *dev)
DRM_DEBUG("NV: PFIFO interrupt! INTSTAT=0x%08x/MODE=0x%08x/PEND=0x%08x\n",
status, chmode, chstat);
- if (status & NV_PFIFO_INTR_ERROR) {
+ if (status & NV_PFIFO_INTR_CACHE_ERROR) {
DRM_ERROR("NV: PFIFO error interrupt\n");
- status &= ~NV_PFIFO_INTR_ERROR;
- NV_WRITE(NV_PFIFO_INTSTAT, NV_PFIFO_INTR_ERROR);
+ status &= ~NV_PFIFO_INTR_CACHE_ERROR;
+ NV_WRITE(NV_PFIFO_INTSTAT, NV_PFIFO_INTR_CACHE_ERROR);
}
if (status) {