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:

committed by
Alex Deucher

parent
4584312d38
commit
43c7c41b25
@@ -149,9 +149,8 @@ static void ttm_bo_release_list(struct kref *list_kref)
|
|||||||
mutex_destroy(&bo->wu_mutex);
|
mutex_destroy(&bo->wu_mutex);
|
||||||
if (bo->destroy)
|
if (bo->destroy)
|
||||||
bo->destroy(bo);
|
bo->destroy(bo);
|
||||||
else {
|
else
|
||||||
kfree(bo);
|
kfree(bo);
|
||||||
}
|
|
||||||
ttm_mem_global_free(bdev->glob->mem_glob, acc_size);
|
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);
|
reservation_object_assert_held(bo->resv);
|
||||||
|
|
||||||
if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
|
if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
|
||||||
|
|
||||||
BUG_ON(!list_empty(&bo->lru));
|
BUG_ON(!list_empty(&bo->lru));
|
||||||
|
|
||||||
man = &bdev->man[bo->mem.mem_type];
|
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 =
|
struct ttm_bo_device *bdev =
|
||||||
container_of(work, struct ttm_bo_device, wq.work);
|
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,
|
schedule_delayed_work(&bdev->wq,
|
||||||
((HZ / 100) < 1) ? 1 : HZ / 100);
|
((HZ / 100) < 1) ? 1 : HZ / 100);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ttm_bo_release(struct kref *kref)
|
static void ttm_bo_release(struct kref *kref)
|
||||||
|
Reference in New Issue
Block a user