drm/amd/display: Fix incorrect vba type
SwathWidthCThisState is expected to be an unsigned int array. Signed-off-by: Ilya Bakoulin <Ilya.Bakoulin@amd.com> Reviewed-by: Charlene Liu <Charlene.Liu@amd.com> Acked-by: Leo Li <sunpeng.li@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
d8cd587d2b
commit
4f008d931b
|
@ -633,7 +633,7 @@ struct vba_vars_st {
|
|||
bool LinkDSCEnable;
|
||||
bool ODMCombine4To1SupportCheckOK[DC__VOLTAGE_STATES + 1];
|
||||
bool ODMCombineEnableThisState[DC__NUM_DPP__MAX];
|
||||
double SwathWidthCThisState[DC__NUM_DPP__MAX];
|
||||
unsigned int SwathWidthCThisState[DC__NUM_DPP__MAX];
|
||||
bool ViewportSizeSupportPerPlane[DC__NUM_DPP__MAX];
|
||||
double AlignedDCCMetaPitchY[DC__NUM_DPP__MAX];
|
||||
double AlignedDCCMetaPitchC[DC__NUM_DPP__MAX];
|
||||
|
|
Loading…
Reference in New Issue