bdk: minerva: fix fsp op/wr check for l4t

This commit is contained in:
CTCaer 2022-01-29 01:31:28 +02:00
parent c0c8fb263a
commit 9a80f8b4b5

View file

@ -181,8 +181,8 @@ void minerva_prep_boot_l4t()
}
// Do FSP WAR and scale to 800 MHz as boot freq.
bool fsp_opwr_enabled = !!(EMC(EMC_MRW3) & 0xC0);
if (fsp_opwr_enabled)
bool fsp_opwr_disabled = !(EMC(EMC_MRW3) & 0xC0);
if (fsp_opwr_disabled)
minerva_change_freq(FREQ_666);
minerva_change_freq(FREQ_800);