]> git.ipfire.org Git - thirdparty/linux.git/commit
clk: ti: dpll: remove round_rate() in favor of determine_rate()
authorBrian Masney <bmasney@redhat.com>
Mon, 11 Aug 2025 12:48:06 +0000 (08:48 -0400)
committerBrian Masney <bmasney@redhat.com>
Mon, 8 Sep 2025 16:50:55 +0000 (12:50 -0400)
commitec70154c8a5f69604bb7796fd1fe40d22e9396b5
tree2981d9037f380d18a9f277daf9d4747095b907ba
parent3b9877b162c9a22d38c081184db48bd8b2e5e8cc
clk: ti: dpll: remove round_rate() in favor of determine_rate()

This driver implements both the determine_rate() and round_rate() clk
ops, and the round_rate() clk ops is deprecated. When both are defined,
clk_core_determine_round_nolock() from the clk core will only use the
determine_rate() clk ops, so let's remove the round_rate() clk ops since
it's unused.

Tested-by: Anddreas Kemnade <andreas@kemnade.info> # OMAP3 GTA04, OMAP4 Panda
Reviewed-by: Kevin Hilman <khilman@baylibre.com>
Tested-by: Kevin Hilman <khilman@baylibre.com>
Signed-off-by: Brian Masney <bmasney@redhat.com>
drivers/clk/ti/dpll.c