diff options
author | Guchun Chen <guchun.chen@amd.com> | 2021-10-08 13:21:45 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2021-10-08 13:22:13 -0400 |
commit | c58a863b1ccf638feb52cf3d9c756a9f578a57ae (patch) | |
tree | 39a20e32b17528df083ce0f36b68e26415ed11c8 /drivers/gpu/drm/amd/amdgpu/psp_v11_0.c | |
parent | ec6abe831a843208e99a59adf108adba22166b3f (diff) | |
download | linux-c58a863b1ccf638feb52cf3d9c756a9f578a57ae.tar.gz linux-c58a863b1ccf638feb52cf3d9c756a9f578a57ae.tar.bz2 linux-c58a863b1ccf638feb52cf3d9c756a9f578a57ae.zip |
drm/amdgpu: use adev_to_drm for consistency when accessing drm_device
adev_to_drm is used everywhere, so improve recent changes
when accessing drm_device pointer from amdgpu_device.
Signed-off-by: Guchun Chen <guchun.chen@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/psp_v11_0.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/psp_v11_0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c index aaf200ec982b..21a325ea49cb 100644 --- a/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c +++ b/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c @@ -698,7 +698,7 @@ static int psp_v11_0_memory_training(struct psp_context *psp, uint32_t ops) return -ENOMEM; } - if (drm_dev_enter(&adev->ddev, &idx)) { + if (drm_dev_enter(adev_to_drm(adev), &idx)) { memcpy_fromio(buf, adev->mman.aper_base_kaddr, sz); ret = psp_v11_0_memory_training_send_msg(psp, PSP_BL__DRAM_LONG_TRAIN); if (ret) { |