summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/drmP.h
diff options
context:
space:
mode:
authorOwain Ainsworth <oga@cvs.openbsd.org>2008-11-24 12:22:56 +0000
committerOwain Ainsworth <oga@cvs.openbsd.org>2008-11-24 12:22:56 +0000
commitc041aed2d8fa09995cda918fcd05770ecdf9a777 (patch)
treee3c7076c8c8755953d26794faf5648c6500f644c /sys/dev/pci/drm/drmP.h
parentb7da7f53876a3ddd051de7479279868e520ab9ef (diff)
Fixup wakeup pointers. interrupts work properly again.
Diffstat (limited to 'sys/dev/pci/drm/drmP.h')
-rw-r--r--sys/dev/pci/drm/drmP.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h
index c4b3bd0fbb6..c0c71d6c449 100644
--- a/sys/dev/pci/drm/drmP.h
+++ b/sys/dev/pci/drm/drmP.h
@@ -236,7 +236,7 @@ DRM_SPINLOCK(&dev->irq_lock); \
while ( ret == 0 ) { \
if (condition) \
break; \
- ret = msleep(&(queue), &dev->irq_lock, \
+ ret = msleep((queue), &dev->irq_lock, \
PZERO | PCATCH, "drmwtq", (timeout)); \
} \
DRM_SPINUNLOCK(&dev->irq_lock)