rpivid: Use clk_get_max_rate()
authorMaxime Ripard <maxime@cerno.tech>
Fri, 15 Apr 2022 13:26:07 +0000 (15:26 +0200)
committerPhil Elwell <8911409+pelwell@users.noreply.github.com>
Fri, 22 Apr 2022 09:17:27 +0000 (10:17 +0100)
The driver was using clk_round_rate() to figure out the maximum clock
rate that was allowed for the HEVC clock.

Since we have a function to return it directly now, let's use it.

Signed-off-by: Maxime Ripard <maxime@cerno.tech>
drivers/staging/media/rpivid/rpivid_video.c

index 8007c4d..bab3ed3 100644 (file)
@@ -558,7 +558,7 @@ static int start_clock(struct rpivid_dev *dev, struct rpivid_ctx *ctx)
        long max_hevc_clock;
        int rv;
 
-       max_hevc_clock = clk_round_rate(dev->clock, ULONG_MAX);
+       max_hevc_clock = clk_get_max_rate(dev->clock);
 
        rv = clk_set_min_rate(dev->clock, max_hevc_clock);
        if (rv) {