diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2009-06-17 12:29:57 +0200 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-06-19 09:01:49 +1000 |
commit | 87ef92092fd092936535ba057ee19b97bb6a709a (patch) | |
tree | 38f3cc40448bee54a809e6c3b0aeefae620a7067 /drivers/gpu | |
parent | 89579f778266d5a4d08d0c64c46b1565218de9f9 (diff) | |
download | op-kernel-dev-87ef92092fd092936535ba057ee19b97bb6a709a.zip op-kernel-dev-87ef92092fd092936535ba057ee19b97bb6a709a.tar.gz |
drm/ttm: fix an error path to exit function correctly
Just a goto instead of a direct exit.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index b82ba6e..c1c407f 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -282,7 +282,7 @@ static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo, ret = ttm_tt_set_placement_caching(bo->ttm, mem->placement); if (ret) - return ret; + goto out_err; if (mem->mem_type != TTM_PL_SYSTEM) { ret = ttm_tt_bind(bo->ttm, mem); |