diff options
author | Dave Airlie <airlied@redhat.com> | 2016-10-27 21:33:52 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-10-27 21:33:52 -0400 |
commit | 220196b38483be6d84a295d318d48595f65da443 (patch) | |
tree | f91c2e6e64ef59afdc075d843d51f23369e9164a /drivers/gpu/drm/amd/amdgpu/amdgpu_object.h | |
parent | a1873c62710b23e9afbd2faeed5f28649cbe4739 (diff) | |
parent | 56df51d003203f1c3a8eab05605973515aa15feb (diff) |
Merge tag 'topic/drm-misc-2016-10-27' of git://anongit.freedesktop.org/git/drm-intel into drm-next
Pull request already again to get the s/fence/dma_fence/ stuff in and
allow everyone to resync. Otherwise really just misc stuff all over, and a
new bridge driver.
* tag 'topic/drm-misc-2016-10-27' of git://anongit.freedesktop.org/git/drm-intel:
drm/bridge: fix platform_no_drv_owner.cocci warnings
drm/bridge: fix semicolon.cocci warnings
drm: Print some debug/error info during DP dual mode detect
drm: mark drm_of_component_match_add dummy inline
drm/bridge: add Silicon Image SiI8620 driver
dt-bindings: add Silicon Image SiI8620 bridge bindings
video: add header file for Mobile High-Definition Link (MHL) interface
drm: convert DT component matching to component_match_add_release()
dma-buf: Rename struct fence to dma_fence
dma-buf/fence: add an lockdep_assert_held()
drm/dp: Factor out helper to distinguish between branch and sink devices
drm/edid: Only print the bad edid when aborting
drm/msm: add missing header dependencies
drm/msm/adreno: move function declarations to header file
drm/i2c/tda998x: mark symbol static where possible
doc: add missing docbook parameter for fence-array
drm: RIP mode_config->rotation_property
drm/msm/mdp5: Advertize 180 degree rotation
drm/msm/mdp5: Use per-plane rotation property
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_object.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_object.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h index d3baf834ac24..5cbf59ec0f68 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h | |||
@@ -157,19 +157,19 @@ int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer, | |||
157 | void amdgpu_bo_move_notify(struct ttm_buffer_object *bo, | 157 | void amdgpu_bo_move_notify(struct ttm_buffer_object *bo, |
158 | struct ttm_mem_reg *new_mem); | 158 | struct ttm_mem_reg *new_mem); |
159 | int amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo); | 159 | int amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo); |
160 | void amdgpu_bo_fence(struct amdgpu_bo *bo, struct fence *fence, | 160 | void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence, |
161 | bool shared); | 161 | bool shared); |
162 | u64 amdgpu_bo_gpu_offset(struct amdgpu_bo *bo); | 162 | u64 amdgpu_bo_gpu_offset(struct amdgpu_bo *bo); |
163 | int amdgpu_bo_backup_to_shadow(struct amdgpu_device *adev, | 163 | int amdgpu_bo_backup_to_shadow(struct amdgpu_device *adev, |
164 | struct amdgpu_ring *ring, | 164 | struct amdgpu_ring *ring, |
165 | struct amdgpu_bo *bo, | 165 | struct amdgpu_bo *bo, |
166 | struct reservation_object *resv, | 166 | struct reservation_object *resv, |
167 | struct fence **fence, bool direct); | 167 | struct dma_fence **fence, bool direct); |
168 | int amdgpu_bo_restore_from_shadow(struct amdgpu_device *adev, | 168 | int amdgpu_bo_restore_from_shadow(struct amdgpu_device *adev, |
169 | struct amdgpu_ring *ring, | 169 | struct amdgpu_ring *ring, |
170 | struct amdgpu_bo *bo, | 170 | struct amdgpu_bo *bo, |
171 | struct reservation_object *resv, | 171 | struct reservation_object *resv, |
172 | struct fence **fence, | 172 | struct dma_fence **fence, |
173 | bool direct); | 173 | bool direct); |
174 | 174 | ||
175 | 175 | ||
@@ -201,7 +201,7 @@ int amdgpu_sa_bo_new(struct amdgpu_sa_manager *sa_manager, | |||
201 | unsigned size, unsigned align); | 201 | unsigned size, unsigned align); |
202 | void amdgpu_sa_bo_free(struct amdgpu_device *adev, | 202 | void amdgpu_sa_bo_free(struct amdgpu_device *adev, |
203 | struct amdgpu_sa_bo **sa_bo, | 203 | struct amdgpu_sa_bo **sa_bo, |
204 | struct fence *fence); | 204 | struct dma_fence *fence); |
205 | #if defined(CONFIG_DEBUG_FS) | 205 | #if defined(CONFIG_DEBUG_FS) |
206 | void amdgpu_sa_bo_dump_debug_info(struct amdgpu_sa_manager *sa_manager, | 206 | void amdgpu_sa_bo_dump_debug_info(struct amdgpu_sa_manager *sa_manager, |
207 | struct seq_file *m); | 207 | struct seq_file *m); |