diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-11-24 12:22:56 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-11-24 12:22:56 +0000 |
commit | c041aed2d8fa09995cda918fcd05770ecdf9a777 (patch) | |
tree | e3c7076c8c8755953d26794faf5648c6500f644c /sys/dev/pci/drm/drmP.h | |
parent | b7da7f53876a3ddd051de7479279868e520ab9ef (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.h | 2 |
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) |