diff options
author | Stephen Boyd <sboyd@kernel.org> | 2021-12-07 20:15:34 -0800 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-12-09 17:15:47 -0800 |
commit | 978fbc7a05993df9a2fd115e8fd78600c72e0dfe (patch) | |
tree | 41d51506bbbdebbbcc1e56ba4d9a476ce671807e /drivers/clk/clk.c | |
parent | 5c1c42c49b8a74ecd6de289ff13c033979501cce (diff) |
clk: __clk_core_init() never takes NULL
The only caller of __clk_core_init() allocates the pointer and checks
the allocation for NULL so this check is impossible. Remove it.
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lore.kernel.org/r/20211208041534.3928718-2-sboyd@kernel.org
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index add86a4b8e8c..d9414a7d585b 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -3414,9 +3414,6 @@ static int __clk_core_init(struct clk_core *core) unsigned long rate; int phase; - if (!core) - return -EINVAL; - clk_prepare_lock(); ret = clk_pm_runtime_get(core); |