drm/amd/display: Add default switch case for DCC
Signed-off-by: Chris Park <Chris.Park@amd.com> Reviewed-by: Aric Cyr <Aric.Cyr@amd.com> Reviewed-by: Jordan Lazare <Jordan.Lazare@amd.com> Acked-by: Harry Wentland <harry.wentland@amd.com> Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
08f6c85921
commit
d905c33a43
|
@ -930,6 +930,9 @@ static bool hubbub1_get_dcc_compression_cap(struct hubbub *hubbub,
|
||||||
output->grph.rgb.max_compressed_blk_size = 64;
|
output->grph.rgb.max_compressed_blk_size = 64;
|
||||||
output->grph.rgb.independent_64b_blks = true;
|
output->grph.rgb.independent_64b_blks = true;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
ASSERT(false);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
output->capable = true;
|
output->capable = true;
|
||||||
|
|
|
@ -293,6 +293,9 @@ bool hubbub2_get_dcc_compression_cap(struct hubbub *hubbub,
|
||||||
output->grph.rgb.max_compressed_blk_size = 64;
|
output->grph.rgb.max_compressed_blk_size = 64;
|
||||||
output->grph.rgb.independent_64b_blks = true;
|
output->grph.rgb.independent_64b_blks = true;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
ASSERT(false);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
output->capable = true;
|
output->capable = true;
|
||||||
output->const_color_support = true;
|
output->const_color_support = true;
|
||||||
|
|
Loading…
Reference in New Issue