Remove buffer object user list check in drm_bo_destroy_unlocked
In the case of driver allocated buffers, there won't necessarily be a user list associated with the buffer, so don't bug out on an empty list.main
parent
cbcbe80c09
commit
5433bbbfde
|
@ -417,7 +417,6 @@ static void drm_bo_destroy_locked(struct drm_buffer_object * bo)
|
||||||
|
|
||||||
atomic_dec(&bm->count);
|
atomic_dec(&bm->count);
|
||||||
|
|
||||||
BUG_ON(!list_empty(&bo->base.list));
|
|
||||||
drm_ctl_free(bo, sizeof(*bo), DRM_MEM_BUFOBJ);
|
drm_ctl_free(bo, sizeof(*bo), DRM_MEM_BUFOBJ);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue