Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 585ffd65 authored by Christian König's avatar Christian König Committed by Alex Deucher
Browse files

drm/ttm: fix coding style in ttm_bo_driver.h



A few 80chars issues and spaces at wrong places.

Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 1c331f75
Loading
Loading
Loading
Loading
+16 −14
Original line number Diff line number Diff line
@@ -386,6 +386,7 @@ struct ttm_bo_driver {

	void (*evict_flags)(struct ttm_buffer_object *bo,
			    struct ttm_placement *placement);

	/**
	 * struct ttm_bo_driver member move:
	 *
@@ -399,9 +400,8 @@ struct ttm_bo_driver {
	 *
	 * Move a buffer between two memory regions.
	 */
	int (*move) (struct ttm_buffer_object *bo,
		     bool evict, bool interruptible,
		     bool no_wait_gpu,
	int (*move)(struct ttm_buffer_object *bo, bool evict,
		    bool interruptible, bool no_wait_gpu,
		    struct ttm_mem_reg *new_mem);

	/**
@@ -438,8 +438,10 @@ struct ttm_bo_driver {
	 * the mapping is not use anymore. io_mem_reserve & io_mem_free
	 * are balanced.
	 */
	int (*io_mem_reserve)(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem);
	void (*io_mem_free)(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem);
	int (*io_mem_reserve)(struct ttm_bo_device *bdev,
			      struct ttm_mem_reg *mem);
	void (*io_mem_free)(struct ttm_bo_device *bdev,
			    struct ttm_mem_reg *mem);

	/**
	 * Optional driver callback for when BO is removed from the LRU.