Commit b8ff7357 authored by Dave Airlie's avatar Dave Airlie

drm/ttm: fix incorrect logic in ttm_bo_io path

This path isn't used by radeon yet, but future drivers will want it,
so fix it right.
Reported-by: default avatarLuca Barbieri <luca@luca-barbieri.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 6ee73861
...@@ -320,7 +320,7 @@ ssize_t ttm_bo_io(struct ttm_bo_device *bdev, struct file *filp, ...@@ -320,7 +320,7 @@ ssize_t ttm_bo_io(struct ttm_bo_device *bdev, struct file *filp,
return -EFAULT; return -EFAULT;
driver = bo->bdev->driver; driver = bo->bdev->driver;
if (unlikely(driver->verify_access)) { if (unlikely(!driver->verify_access)) {
ret = -EPERM; ret = -EPERM;
goto out_unref; goto out_unref;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment