diff options
author | Andrey Grodzovsky <andrey.grodzovsky@amd.com> | 2018-01-17 17:24:13 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-01-18 16:10:36 -0500 |
commit | adab595d16abe48e9c097f000bf8921d35b28fb7 (patch) | |
tree | 85683e5697ae976fa93d5e9ee72130e10bf3790b | |
parent | 8f2112f84c3c2acd3fcc8b922e78b6758db902db (diff) | |
download | linux-stable-adab595d16abe48e9c097f000bf8921d35b28fb7.tar.gz linux-stable-adab595d16abe48e9c097f000bf8921d35b28fb7.tar.bz2 linux-stable-adab595d16abe48e9c097f000bf8921d35b28fb7.zip |
drm/amd/powerplay: Fix smu_table_entry.handle type
The handle describes kernel logical address, should be
unsigned long and not uint32_t.
Fixes KASAN error and GFP on driver unload.
Reviewed-by: Rex Zhu <Rex.Zhu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/smumgr/rv_smumgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/rv_smumgr.h b/drivers/gpu/drm/amd/powerplay/smumgr/rv_smumgr.h index 58888400f1b8..caebdbebdcd8 100644 --- a/drivers/gpu/drm/amd/powerplay/smumgr/rv_smumgr.h +++ b/drivers/gpu/drm/amd/powerplay/smumgr/rv_smumgr.h @@ -40,7 +40,7 @@ struct smu_table_entry { uint32_t table_addr_high; uint32_t table_addr_low; uint8_t *table; - uint32_t handle; + unsigned long handle; }; struct smu_table_array { |