]> git.baikalelectronics.ru Git - uboot.git/commitdiff
clk: Make rfree return void
authorSean Anderson <seanga2@gmail.com>
Sat, 15 Jan 2022 22:24:58 +0000 (17:24 -0500)
committerSean Anderson <seanga2@gmail.com>
Wed, 30 Mar 2022 17:02:55 +0000 (13:02 -0400)
When freeing a clock there is not much we can do if there is an error, and
most callers do not actually check the return value. Even e.g. checking to
make sure that clk->id is valid should have been done in request() in the
first place (unless someone is messing with the driver behind our back).
Just return void and don't bother returning an error.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Link: https://lore.kernel.org/r/20220115222504.617013-2-seanga2@gmail.com
drivers/clk/clk-uclass.c
drivers/clk/clk_sandbox.c
include/clk-uclass.h

index c20c928bf1d1287428f4d56e1d980e26cce2e69b..2cc798e93684d56916ca26e3bf3bfb30fbc71950 100644 (file)
@@ -481,10 +481,9 @@ int clk_free(struct clk *clk)
                return 0;
        ops = clk_dev_ops(clk->dev);
 
-       if (!ops->rfree)
-               return 0;
-
-       return ops->rfree(clk);
+       if (ops->rfree)
+               ops->rfree(clk);
+       return 0;
 }
 
 ulong clk_get_rate(struct clk *clk)
index 57acf7d8553bbfc628f7c46fa58fe9b2b4b319e3..636914db8ca20ed1b42ea82222aa1221ef8952ab 100644 (file)
@@ -101,15 +101,15 @@ static int sandbox_clk_request(struct clk *clk)
        return 0;
 }
 
-static int sandbox_clk_free(struct clk *clk)
+static void sandbox_clk_free(struct clk *clk)
 {
        struct sandbox_clk_priv *priv = dev_get_priv(clk->dev);
 
        if (clk->id >= SANDBOX_CLK_ID_COUNT)
-               return -EINVAL;
+               return;
 
        priv->requested[clk->id] = false;
-       return 0;
+       return;
 }
 
 static struct clk_ops sandbox_clk_ops = {
index e44f1caf5160ef8c9970be6ebe66df9db9e1cabb..65ebff9ed27b58cfa651fa5449f5edbda2d6f1df 100644 (file)
@@ -32,7 +32,7 @@ struct clk_ops {
        int (*of_xlate)(struct clk *clock,
                        struct ofnode_phandle_args *args);
        int (*request)(struct clk *clock);
-       int (*rfree)(struct clk *clock);
+       void (*rfree)(struct clk *clock);
        ulong (*round_rate)(struct clk *clk, ulong rate);
        ulong (*get_rate)(struct clk *clk);
        ulong (*set_rate)(struct clk *clk, ulong rate);
@@ -81,11 +81,9 @@ int request(struct clk *clock);
  * rfree() - Free a previously requested clock.
  * @clock:     The clock to free.
  *
- * This is the implementation of the client clk_free() API.
- *
- * Return: 0 if OK, or a negative error code.
+ * Free any resources allocated in request().
  */
-int rfree(struct clk *clock);
+void rfree(struct clk *clock);
 
 /**
  * round_rate() - Adjust a rate to the exact rate a clock can provide.