Searched refs:pred_a (Results 1 – 1 of 1) sorted by relevance
639 unsigned int prer, pred_a, pred_s, pred_a_max, pred_s_max, cr; in stm32_rtc_init() local655 for (pred_a = 0; pred_a <= pred_a_max; pred_a++) { in stm32_rtc_init()656 pred_s = (rate / (pred_a + 1)) - 1; in stm32_rtc_init()658 if (pred_s <= pred_s_max && ((pred_s + 1) * (pred_a + 1)) == rate) in stm32_rtc_init()662 for (pred_a = pred_a_max; pred_a + 1 > 0; pred_a--) { in stm32_rtc_init()663 pred_s = (rate / (pred_a + 1)) - 1; in stm32_rtc_init()665 if (((pred_s + 1) * (pred_a + 1)) == rate) in stm32_rtc_init()674 if (pred_s > pred_s_max || pred_a > pred_a_max) { in stm32_rtc_init()675 pred_a = pred_a_max; in stm32_rtc_init()676 pred_s = (rate / (pred_a + 1)) - 1; in stm32_rtc_init()[all …]