Always get pllx

This commit is contained in:
Lightos1
2026-04-01 17:17:25 +02:00
parent da0806df5d
commit 944c1ef1f2
2 changed files with 5 additions and 1 deletions

View File

@@ -77,9 +77,12 @@ namespace board {
break;
}
case HorizonOCThermalSensor_MEM: {
millis = board::GetSocType() == SysClkSocType_Mariko ? temps.pllx : temps.mem;
millis = temps.mem;
break;
}
case HorizonOCThermalSensor_PLLX {
millis = temps.pllx;
}
default: {
ASSERT_ENUM_VALID(SysClkThermalSensor, sensor);
}