diff options
author | Guchun Chen <guchun.chen@amd.com> | 2021-12-13 12:06:30 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2021-12-14 16:09:24 -0500 |
commit | e0f943b4f9a366ac7f24fa3f0e52141178d4f1b5 (patch) | |
tree | 9a0975e407a7204e17ab16152c688d03c74b5776 /drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | |
parent | 7e31a8585b79a4d67e7fefdb6428054d18ddd339 (diff) |
drm/amdgpu: use adev_to_drm to get drm_device pointer
Updated for consistency when accessing drm_device from amdgpu driver.
Signed-off-by: Guchun Chen <guchun.chen@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_device.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 4224be241338..f2c0bca61d4d 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -5706,7 +5706,7 @@ void amdgpu_device_invalidate_hdp(struct amdgpu_device *adev, void amdgpu_device_halt(struct amdgpu_device *adev) { struct pci_dev *pdev = adev->pdev; - struct drm_device *ddev = &adev->ddev; + struct drm_device *ddev = adev_to_drm(adev); drm_dev_unplug(ddev); |