Commit 916635bf authored by Roel Kluin's avatar Roel Kluin Committed by Dave Airlie

drm/ttm: fix misplaced parentheses

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent 42dd8619
...@@ -327,7 +327,7 @@ ssize_t ttm_bo_io(struct ttm_bo_device *bdev, struct file *filp, ...@@ -327,7 +327,7 @@ ssize_t ttm_bo_io(struct ttm_bo_device *bdev, struct file *filp,
goto out_unref; goto out_unref;
kmap_offset = dev_offset - bo->vm_node->start; kmap_offset = dev_offset - bo->vm_node->start;
if (unlikely(kmap_offset) >= bo->num_pages) { if (unlikely(kmap_offset >= bo->num_pages)) {
ret = -EFBIG; ret = -EFBIG;
goto out_unref; goto out_unref;
} }
...@@ -401,7 +401,7 @@ ssize_t ttm_bo_fbdev_io(struct ttm_buffer_object *bo, const char __user *wbuf, ...@@ -401,7 +401,7 @@ ssize_t ttm_bo_fbdev_io(struct ttm_buffer_object *bo, const char __user *wbuf,
bool dummy; bool dummy;
kmap_offset = (*f_pos >> PAGE_SHIFT); kmap_offset = (*f_pos >> PAGE_SHIFT);
if (unlikely(kmap_offset) >= bo->num_pages) if (unlikely(kmap_offset >= bo->num_pages))
return -EFBIG; return -EFBIG;
page_offset = *f_pos & ~PAGE_MASK; page_offset = *f_pos & ~PAGE_MASK;
......
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