diff options
author | Dave Airlie <airlied@redhat.com> | 2017-02-01 01:40:13 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-02-01 01:40:13 +0300 |
commit | b75e16959c9410b4eea1fb94e49835d40a671d0f (patch) | |
tree | 3ecc8cc8318fed861f796959cbf90b0a9afd1961 /drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c | |
parent | 29a73d906bd386839015602c4bd35ef2e3531abc (diff) | |
parent | 5d25fde23b3176c7f94d2a992cb9762707d7c2a0 (diff) | |
download | linux-b75e16959c9410b4eea1fb94e49835d40a671d0f.tar.xz |
Merge branch 'drm-vmwgfx-next' of git://people.freedesktop.org/~syeh/repos_linux into drm-next
This is to address what we've discussed, moving some of the minor changes
into a drm-next request.
* 'drm-vmwgfx-next' of git://people.freedesktop.org/~syeh/repos_linux:
drm/vmwgfx: Use kmemdup instead of kmalloc and memcpy
drm/vmwgfx: Fix depth input into drm_mode_legacy_fb_format
drm/vmwgfx: Fix a potential integer overflow
drm/vmwgfx: Clear an uninitialized struct member
drm/vmwgfx: Annotate ignored return values
drm/vmwgfx: Clear uninitialized fields of a parameter
Diffstat (limited to 'drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c b/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c index 1de96693f2a7..4c7f24a67a2e 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c @@ -840,7 +840,7 @@ static void vmw_move_notify(struct ttm_buffer_object *bo, */ static void vmw_swap_notify(struct ttm_buffer_object *bo) { - ttm_bo_wait(bo, false, false); + (void) ttm_bo_wait(bo, false, false); } |