hoc-sys: fix status monitor bug

This commit is contained in:
souldbminersmwc
2025-10-24 21:26:43 -04:00
parent 951eec7474
commit ff26bb9e76
3 changed files with 3 additions and 5 deletions

View File

@@ -90,8 +90,8 @@ static inline uint64_t sysclkValidConfigValue(SysClkConfigValue val, uint64_t in
case SysClkConfigValue_PowerLogIntervalMs:
case SysClkConfigValue_CsvWriteIntervalMs:
return input >= 0;
case HocClkConfigValue_OverwriteBoostMode:
case HocClkConfigValue_UncappedClocks:
case HocClkConfigValue_OverwriteBoostMode:
return (input & 0x1) == input;
case HocClkConfigValue_MaxCpuClock:
case HocClkConfigValue_MaxGpuClock: