Applied Copilot suggestions

[ROCm/rocm_smi_lib commit: def9a3c92d]
이 커밋은 다음에 포함됨:
GabrPham
2025-08-06 12:19:14 -05:00
커밋한 사람 Arif, Maisam
부모 12f71cab20
커밋 67fd6c0f73
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
+1 -1
파일 보기
@@ -2827,7 +2827,7 @@ def showRange(deviceList, rangeType):
return
printLogSpacer(' Show Valid %s Range ' % (rangeType))
odvf = rsmi_od_volt_freq_data_t()
uint64_max = 2**64 - 1
uint64_max = UIntegerTypes.UINT64_T
for device in deviceList:
ret = rocmsmi.rsmi_dev_od_volt_info_get(device, byref(odvf))
if rsmi_ret_ok(ret, device, 'get_od_volt', silent=False):
+3 -2
파일 보기
@@ -1446,7 +1446,8 @@ static rsmi_status_t get_od_clk_volt_info(uint32_t dv_ind,
};
// track the number of keys found, if this goes down to 0 then that means that there is no valid data
uint8_t structured_key_counter = 6;
const uint8_t kNumStructuredKeysToCheck = 6;
uint8_t structured_key_counter = kNumStructuredKeysToCheck;
// Validates 'OD_SCLK' is in the structure
if (txt_power_dev_od_voltage.contains_structured_key(kTAG_OD_SCLK,
KTAG_FIRST_FREQ_IDX)) {
@@ -1497,7 +1498,7 @@ static rsmi_status_t get_od_clk_volt_info(uint32_t dv_ind,
}
else
structured_key_counter--;
if (structured_key_counter <= 0) {
if (structured_key_counter == 0) {
return RSMI_STATUS_NOT_YET_IMPLEMENTED;
}