linux-6.6-rc1/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c:2175:26: style: Array index 'i' is used before limits check. [arrayIndexThenCheck]
David Binderman
dcb314 at hotmail.com
Mon Sep 11 16:01:43 UTC 2023
Hello there,
Static analyser cppcheck noticed the above problem. Source code is
if (dcfclk_sta_targets[i] < optimal_dcfclk_for_uclk[j] && i < num_dcfclk_sta_targets) {
Suggest new code:
if (i < num_dcfclk_sta_targets && dcfclk_sta_targets[i] < optimal_dcfclk_for_uclk[j]) {
Regards
David Binderman
More information about the amd-gfx
mailing list