[AMD Official Use Only] Reviewed-by: Alex Deucher <alexander.deuc...@amd.com> ________________________________ From: Chen, Guchun <guchun.c...@amd.com> Sent: Sunday, December 12, 2021 11:08 PM To: amd-gfx@lists.freedesktop.org <amd-gfx@lists.freedesktop.org>; Deucher, Alexander <alexander.deuc...@amd.com>; Koenig, Christian <christian.koe...@amd.com>; Pan, Xinhui <xinhui....@amd.com>; Yu, Lang <lang...@amd.com> Cc: Chen, Guchun <guchun.c...@amd.com> Subject: [PATCH] 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.c...@amd.com> --- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 48aeca3b8f16..b2c3892e8e7f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -5705,7 +5705,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); -- 2.17.1