diff options
author | Anthony Koo <Anthony.Koo@amd.com> | 2023-01-27 19:55:49 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-02-09 01:16:21 +0300 |
commit | 826e7ffaf079c72607bf3199d4e19730eaf8ca00 (patch) | |
tree | aabefbb91e532684c2f6962bc6d66fa60d757088 | |
parent | 942edb737e11b9293068bb56232c08ee2a99df93 (diff) | |
download | linux-826e7ffaf079c72607bf3199d4e19730eaf8ca00.tar.xz |
drm/amd/display: [FW Promotion] Release 0.0.153.0
[Why&How]
- Reduce reserved size from 9 to 8 dwords to reduce structure size
and allow the union dmub_rb_cmd to fit into max 64-bytes cmd size
Reviewed-by: Aric Cyr <Aric.Cyr@amd.com>
Acked-by: Qingqing Zhuo <qingqing.zhuo@amd.com>
Signed-off-by: Anthony Koo <Anthony.Koo@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h index 04df407092b1..c9f3d65893b0 100644 --- a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h +++ b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h @@ -943,7 +943,7 @@ struct dmub_cmd_PLAT_54186_wa { uint8_t grph_stereo : 1; /**< 1 if stereo */ uint32_t reserved : 21; /**< Reserved */ } flip_params; /**< Pageflip parameters */ - uint32_t reserved[9]; /**< Reserved bits */ + uint32_t reserved[8]; /**< Reserved bits */ }; /** |