Message ID | 20190214104047.1173-8-gabriel.fernandez@st.com (mailing list archive) |
---|---|
State | Mainlined, archived |
Commit | 97621d22df60d7348826d2e4b0c349673faeb4b8 |
Headers | show |
Series | update STM32MP1 clocks | expand |
Quoting gabriel.fernandez@st.com (2019-02-14 02:40:47) > From: Gabriel Fernandez <gabriel.fernandez@st.com> > > Fix the bit width of the hse rtc divider because it's off by one. > > Fixes: 2c87c9d33117 ("clk: stm32mp1: add RTC clock") > Signed-off-by: Gabriel Fernandez <gabriel.fernandez@st.com> > --- Applied to clk-next
diff --git a/drivers/clk/clk-stm32mp1.c b/drivers/clk/clk-stm32mp1.c index ca987632564e..a0ae8dc16909 100644 --- a/drivers/clk/clk-stm32mp1.c +++ b/drivers/clk/clk-stm32mp1.c @@ -1962,7 +1962,7 @@ static const struct clock_config stm32mp1_clock_cfg[] = { _DIV(RCC_ETHCKSELR, 4, 4, 0, NULL)), /* RTC clock */ - DIV(NO_ID, "ck_hse_rtc", "ck_hse", 0, RCC_RTCDIVR, 0, 7, 0), + DIV(NO_ID, "ck_hse_rtc", "ck_hse", 0, RCC_RTCDIVR, 0, 6, 0), COMPOSITE(RTC, "ck_rtc", rtc_src, CLK_OPS_PARENT_ENABLE | CLK_SET_RATE_PARENT,