diff options
| author | Anthony Koo <[email protected]> | 2023-01-27 11:55:49 -0500 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-02-08 17:16:21 -0500 |
| commit | 826e7ffaf079c72607bf3199d4e19730eaf8ca00 (patch) | |
| tree | aabefbb91e532684c2f6962bc6d66fa60d757088 /drivers/gpu | |
| parent | 942edb737e11b9293068bb56232c08ee2a99df93 (diff) | |
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 <[email protected]>
Acked-by: Qingqing Zhuo <[email protected]>
Signed-off-by: Anthony Koo <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu')
| -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 */ }; /** |