diff options
| author | Kenneth Feng <Kenneth.Feng@amd.com> | 2019-04-04 12:50:23 +0800 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2019-06-21 18:59:26 -0500 |
| commit | 4b2bb705a0b72fb8fdc6f6330b737f198097b347 (patch) | |
| tree | cfe8c246d94c9169970aff8eca4104de92fef566 | |
| parent | 013fd3a61a827c65491b0bb9ad3c0417f09c8146 (diff) | |
| download | kernel-4b2bb705a0b72fb8fdc6f6330b737f198097b347.tar.gz | |
drm/amd/powerplay: fix the incorrect type of pptable
This patch is to fix the incorrect type of pptable, otherwise, the data will be
totally wrong in parsing phase.
Signed-off-by: Kenneth Feng <Kenneth.Feng@amd.com>
Signed-off-by: Huang Rui <ray.huang@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
| -rw-r--r-- | drivers/gpu/drm/amd/powerplay/inc/smu_v11_0_pptable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/inc/smu_v11_0_pptable.h b/drivers/gpu/drm/amd/powerplay/inc/smu_v11_0_pptable.h index 92c65b80bde2..86cdc3393eac 100644 --- a/drivers/gpu/drm/amd/powerplay/inc/smu_v11_0_pptable.h +++ b/drivers/gpu/drm/amd/powerplay/inc/smu_v11_0_pptable.h @@ -121,7 +121,7 @@ struct smu_11_0_powerplay_table { struct atom_common_table_header header; uint8_t table_revision; - uint32_t table_size; //Driver portion table size. The offset to smc_pptable including header size + uint16_t table_size; //Driver portion table size. The offset to smc_pptable including header size uint32_t golden_pp_id; uint32_t golden_revision; uint16_t format_id; |
