firmware: fix misleading si5324 comment

This commit is contained in:
Sebastien Bourdeauducq 2017-02-02 20:53:39 +08:00
parent 9c93c760fc
commit 6bea253f82
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ fn ident() -> Result<u16> {
}
fn locked() -> Result<bool> {
Ok((read(130)? & 0x01) == 0) // LOL_INT=1
Ok((read(130)? & 0x01) == 0) // LOL_INT=0
}
pub fn setup_hitless_clock_switching(settings: &FrequencySettings) -> Result<()> {