Skip to content

Commit

Permalink
[CR][AMD] Make sure not to mask Thermal Trip event
Browse files Browse the repository at this point in the history
  • Loading branch information
cyring committed Mar 20, 2024
1 parent 87db6ca commit 49e4e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x86_64/corefreqk.c
Original file line number Diff line number Diff line change
Expand Up @@ -15777,7 +15777,7 @@ static void Core_AMD_Family_17h_ThermTrip(CORE_RO *Core)
Core->PowerThermal.Events[eSTS] = \
(Bit64)ThermTrip.THERM_TP << LSHIFT_THERMAL_STS;
}
Core->PowerThermal.Events[eSTS] = \
Core->PowerThermal.Events[eSTS] |= \
(Bit64)ThermTrip.CTF_THRESHOLD << LSHIFT_CRITIC_TMP;
}

Expand Down

0 comments on commit 49e4e2b

Please sign in to comment.