diff options
| author | Tom Rini <[email protected]> | 2024-01-30 07:54:28 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-01-30 07:54:28 -0500 |
| commit | 28760ce8640ff6266bd1c1c568a4a231576f3919 (patch) | |
| tree | 291fa96c3ed6d8e22d0fe6df906007cd650f555d /drivers/timer | |
| parent | 6faba41927bdc8973b59678649ef83c564cc421e (diff) | |
| parent | a8dc4965f09d28a59c156437673ddb66860c847e (diff) | |
Merge tag 'clk-2024.04-rc2' of https://source.denx.de/u-boot/custodians/u-boot-clk
Clock changes for v2024.04
This pull has the usual fixes and new (clock-adjacent) drivers. It also has some
cleanups for the clock API; in particular removing the unused rfree callback.
CI: https://source.denx.de/u-boot/custodians/u-boot-clk/-/pipelines/19486
Diffstat (limited to 'drivers/timer')
| -rw-r--r-- | drivers/timer/dw-apb-timer.c | 2 | ||||
| -rw-r--r-- | drivers/timer/ostm_timer.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/drivers/timer/dw-apb-timer.c b/drivers/timer/dw-apb-timer.c index 6cd25251f94..0607f751ca7 100644 --- a/drivers/timer/dw-apb-timer.c +++ b/drivers/timer/dw-apb-timer.c @@ -74,8 +74,6 @@ static int dw_apb_timer_probe(struct udevice *dev) return ret; uc_priv->clock_rate = clk_get_rate(&clk); - - clk_free(&clk); } /* init timer */ diff --git a/drivers/timer/ostm_timer.c b/drivers/timer/ostm_timer.c index 3ec729d2c43..3bf0d4647b5 100644 --- a/drivers/timer/ostm_timer.c +++ b/drivers/timer/ostm_timer.c @@ -49,8 +49,6 @@ static int ostm_probe(struct udevice *dev) return ret; uc_priv->clock_rate = clk_get_rate(&clk); - - clk_free(&clk); #else uc_priv->clock_rate = get_board_sys_clk() / 2; #endif |
