aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv04.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv04.c b/drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv04.c
index 7b9ce87f0617..7f48249f41de 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv04.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv04.c
@@ -76,8 +76,8 @@ nv04_timer_intr(struct nvkm_timer *tmr)
76 u32 stat = nvkm_rd32(device, NV04_PTIMER_INTR_0); 76 u32 stat = nvkm_rd32(device, NV04_PTIMER_INTR_0);
77 77
78 if (stat & 0x00000001) { 78 if (stat & 0x00000001) {
79 nvkm_timer_alarm_trigger(tmr);
80 nvkm_wr32(device, NV04_PTIMER_INTR_0, 0x00000001); 79 nvkm_wr32(device, NV04_PTIMER_INTR_0, 0x00000001);
80 nvkm_timer_alarm_trigger(tmr);
81 stat &= ~0x00000001; 81 stat &= ~0x00000001;
82 } 82 }
83 83