Applied Copilot suggestions

This commit is contained in:
GabrPham
2025-08-06 12:19:14 -05:00
کامیت شده توسط Arif, Maisam
والد 3bea40dfd0
کامیت def9a3c92d
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;
}