On Wed, Nov 06, 2019 at 11:12:17AM +0100, Christophe Roullier wrote: > Add optional support for syscfg clock in dwmac-stm32.c > Now Syscfg clock is activated automatically when syscfg > registers are used > > Signed-off-by: Christophe Roullier <christophe.roullier@xxxxxx> > --- > .../net/ethernet/stmicro/stmmac/dwmac-stm32.c | 28 +++++++++++-------- > 1 file changed, 16 insertions(+), 12 deletions(-) > > diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c > index 4ef041bdf6a1..be7d58d83cfa 100644 > --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c > +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c > @@ -152,19 +152,24 @@ static int stm32mp1_clk_prepare(struct stm32_dwmac *dwmac, bool prepare) > int ret = 0; > > if (prepare) { > - ret = clk_prepare_enable(dwmac->syscfg_clk); > - if (ret) > - return ret; > - > + if (dwmac->syscfg_clk) { > + ret = clk_prepare_enable(dwmac->syscfg_clk); > + if (ret) > + return ret; > + } Hi Christophe I think you did not understand what i said. clk_prepare_enable() is happy to take a NULL pointer. So you don't need this new guard. You don't need this change at all. > if (dwmac->clk_eth_ck) { > ret = clk_prepare_enable(dwmac->clk_eth_ck); > if (ret) { > - clk_disable_unprepare(dwmac->syscfg_clk); > + if (dwmac->syscfg_clk) > + clk_disable_unprepare > + (dwmac->syscfg_clk); clk_disable_unprepare() is happy to take a NULL pointer... Andrew