diff options
-rw-r--r-- | bsd-core/drmP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bsd-core/drmP.h b/bsd-core/drmP.h index c7e40230..f6739cb0 100644 --- a/bsd-core/drmP.h +++ b/bsd-core/drmP.h @@ -299,8 +299,8 @@ for ( ret = 0 ; !ret && !(condition) ; ) { \ DRM_UNLOCK(); \ mtx_lock(&dev->irq_lock); \ if (!(condition)) \ - ret = -mtx_sleep(&(queue), &dev->irq_lock, \ - PZERO | PCATCH, "drmwtq", (timeout)); \ + ret = -mtx_sleep(&(queue), &dev->irq_lock, \ + PCATCH, "drmwtq", (timeout)); \ mtx_unlock(&dev->irq_lock); \ DRM_LOCK(); \ } |