aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/drm/ttm/ttm_bo_driver.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h
index e3f8c99a8a9d..202f0a7171e8 100644
--- a/include/drm/ttm/ttm_bo_driver.h
+++ b/include/drm/ttm/ttm_bo_driver.h
@@ -182,6 +182,7 @@ struct ttm_mem_type_manager_func {
182 * @man: Pointer to a memory type manager. 182 * @man: Pointer to a memory type manager.
183 * @bo: Pointer to the buffer object we're allocating space for. 183 * @bo: Pointer to the buffer object we're allocating space for.
184 * @placement: Placement details. 184 * @placement: Placement details.
185 * @flags: Additional placement flags.
185 * @mem: Pointer to a struct ttm_mem_reg to be filled in. 186 * @mem: Pointer to a struct ttm_mem_reg to be filled in.
186 * 187 *
187 * This function should allocate space in the memory type managed 188 * This function should allocate space in the memory type managed
@@ -206,6 +207,7 @@ struct ttm_mem_type_manager_func {
206 int (*get_node)(struct ttm_mem_type_manager *man, 207 int (*get_node)(struct ttm_mem_type_manager *man,
207 struct ttm_buffer_object *bo, 208 struct ttm_buffer_object *bo,
208 struct ttm_placement *placement, 209 struct ttm_placement *placement,
210 uint32_t flags,
209 struct ttm_mem_reg *mem); 211 struct ttm_mem_reg *mem);
210 212
211 /** 213 /**