1
0
Fork 0

Clean up warning take 2

This commit is contained in:
newell 2024-11-01 17:28:53 -07:00
parent b3ab7a7950
commit 463efcf194
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ fn set_fclk0_freq(clk: RtioClock, cfg: &Config) {
.modify(|_, w| w.divisor0(divisor0).divisor1(divisor1)); .modify(|_, w| w.divisor0(divisor0).divisor1(divisor1));
}); });
} else { } else {
warn!("Could not set fclk0 for target frequency of '{:?}'", target_freq); warn!("Could not set fclk0 for target frequency: '{:?}'", target_freq);
} }
} }