drm/msm: drop unused "fail" label

The label "fail:" is unused after commit 96393660.

It is not an issue in upstream because upstream does not have CAF
commit 7e5bda56 that removed other usage of fail:.

Signed-off-by: Chenyang Zhong <zhongcy95@gmail.com>
Change-Id: Ic80cd75a17b67d348b4baf536a222a29f8b5458c
This commit is contained in:
Chenyang Zhong
2021-11-30 02:34:47 -05:00
committed by Bruno Martins
parent a275f2254a
commit c4dd26e62b

View File

@@ -1076,8 +1076,4 @@ struct drm_gem_object *msm_gem_import(struct drm_device *dev,
msm_obj->pages = NULL;
return obj;
fail:
drm_gem_object_unreference_unlocked(obj);
return ERR_PTR(ret);
}