drm/ttm: Fix coding style in ttm_bo.c
Correct indentation and {} brace style. Signed-off-by: Tom St Denis <tom.stdenis@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
4584312d38
commit
43c7c41b25
|
@ -149,9 +149,8 @@ static void ttm_bo_release_list(struct kref *list_kref)
|
|||
mutex_destroy(&bo->wu_mutex);
|
||||
if (bo->destroy)
|
||||
bo->destroy(bo);
|
||||
else {
|
||||
else
|
||||
kfree(bo);
|
||||
}
|
||||
ttm_mem_global_free(bdev->glob->mem_glob, acc_size);
|
||||
}
|
||||
|
||||
|
@ -163,7 +162,6 @@ void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
|
|||
reservation_object_assert_held(bo->resv);
|
||||
|
||||
if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
|
||||
|
||||
BUG_ON(!list_empty(&bo->lru));
|
||||
|
||||
man = &bdev->man[bo->mem.mem_type];
|
||||
|
@ -614,10 +612,9 @@ static void ttm_bo_delayed_workqueue(struct work_struct *work)
|
|||
struct ttm_bo_device *bdev =
|
||||
container_of(work, struct ttm_bo_device, wq.work);
|
||||
|
||||
if (!ttm_bo_delayed_delete(bdev, false)) {
|
||||
if (!ttm_bo_delayed_delete(bdev, false))
|
||||
schedule_delayed_work(&bdev->wq,
|
||||
((HZ / 100) < 1) ? 1 : HZ / 100);
|
||||
}
|
||||
}
|
||||
|
||||
static void ttm_bo_release(struct kref *kref)
|
||||
|
|
Loading…
Reference in New Issue