diff options
Diffstat (limited to 'include/drm/ttm/ttm_bo_driver.h')
-rw-r--r-- | include/drm/ttm/ttm_bo_driver.h | 2 |
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 202f0a7171e8..1d9f0f1ff52d 100644 --- a/include/drm/ttm/ttm_bo_driver.h +++ b/include/drm/ttm/ttm_bo_driver.h | |||
@@ -133,6 +133,7 @@ struct ttm_tt { | |||
133 | * struct ttm_dma_tt | 133 | * struct ttm_dma_tt |
134 | * | 134 | * |
135 | * @ttm: Base ttm_tt struct. | 135 | * @ttm: Base ttm_tt struct. |
136 | * @cpu_address: The CPU address of the pages | ||
136 | * @dma_address: The DMA (bus) addresses of the pages | 137 | * @dma_address: The DMA (bus) addresses of the pages |
137 | * @pages_list: used by some page allocation backend | 138 | * @pages_list: used by some page allocation backend |
138 | * | 139 | * |
@@ -142,6 +143,7 @@ struct ttm_tt { | |||
142 | */ | 143 | */ |
143 | struct ttm_dma_tt { | 144 | struct ttm_dma_tt { |
144 | struct ttm_tt ttm; | 145 | struct ttm_tt ttm; |
146 | void **cpu_address; | ||
145 | dma_addr_t *dma_address; | 147 | dma_addr_t *dma_address; |
146 | struct list_head pages_list; | 148 | struct list_head pages_list; |
147 | }; | 149 | }; |