clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration
authorStefan Wahren <stefan.wahren@i2se.com>
Sun, 4 Sep 2022 14:10:37 +0000 (16:10 +0200)
committerStephen Boyd <sboyd@kernel.org>
Fri, 30 Sep 2022 21:30:36 +0000 (14:30 -0700)
The return value of bcm2835_clock_rate_from_divisor is always unsigned
and also all caller expect this. So fix the declaration accordingly.

Fixes: 41691b8862e2 ("clk: bcm2835: Add support for programming the audio domain clocks")
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Link: https://lore.kernel.org/r/20220904141037.38816-1-stefan.wahren@i2se.com
Reviewed-by: Ivan T. Ivanov <iivanov@suse.de>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/bcm/clk-bcm2835.c

index 3f2ce20..e74fe62 100644 (file)
@@ -969,9 +969,9 @@ static u32 bcm2835_clock_choose_div(struct clk_hw *hw,
        return div;
 }
 
-static long bcm2835_clock_rate_from_divisor(struct bcm2835_clock *clock,
-                                           unsigned long parent_rate,
-                                           u32 div)
+static unsigned long bcm2835_clock_rate_from_divisor(struct bcm2835_clock *clock,
+                                                    unsigned long parent_rate,
+                                                    u32 div)
 {
        const struct bcm2835_clock_data *data = clock->data;
        u64 temp;