wrpll: print ADPLL offsets

This commit is contained in:
Sebastien Bourdeauducq 2020-01-13 19:32:30 +08:00
parent 8edbc33d0e
commit e87d864063
1 changed files with 1 additions and 0 deletions

View File

@ -391,6 +391,7 @@ fn trim_dcxos(f_helper: u32, f_main: u32, f_cdr: u32) -> Result<(i32, i32), &'st
return Err("main DCXO offset too large"); return Err("main DCXO offset too large");
} }
info!("ADPLL offsets: helper={} main={}", helper_adpll, main_adpll);
Ok((helper_adpll as i32, main_adpll as i32)) Ok((helper_adpll as i32, main_adpll as i32))
} }