firmware: fix typos

pull/1450/head^2
Sebastien Bourdeauducq 2020-05-29 15:21:07 +08:00
parent d8b5bcf019
commit 02900d79d0
1 changed files with 2 additions and 2 deletions

View File

@ -527,7 +527,7 @@ pub mod jesd204sync {
info!(" ...done");
// We tested that the value is correct - now use it
info!("sychronizing DAC-{}", dacno);
info!("synchronizing DAC-{}", dacno);
hmc7043_sysref_delay_dac(dacno, delay);
ad9154_sync(dacno)?;
@ -570,7 +570,7 @@ pub mod jesd204sync {
pub fn resync_dacs() -> Result<(), &'static str> {
for dacno in 0..csr::JDCG.len() {
info!("resychronizing DAC-{}", dacno);
info!("resynchronizing DAC-{}", dacno);
ad9154_sync(dacno as u8)?;
}
Ok(())