hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/rtc/rtc-mxc_v2.c
....@@ -337,8 +337,10 @@
337337 }
338338
339339 pdata->rtc = devm_rtc_allocate_device(&pdev->dev);
340
- if (IS_ERR(pdata->rtc))
340
+ if (IS_ERR(pdata->rtc)) {
341
+ clk_disable_unprepare(pdata->clk);
341342 return PTR_ERR(pdata->rtc);
343
+ }
342344
343345 pdata->rtc->ops = &mxc_rtc_ops;
344346 pdata->rtc->range_max = U32_MAX;