|
@@ -2268,14 +2268,17 @@ int __clk_get(struct clk *clk)
|
|
|
|
|
|
|
|
void __clk_put(struct clk *clk)
|
|
void __clk_put(struct clk *clk)
|
|
|
{
|
|
{
|
|
|
|
|
+ struct module *owner;
|
|
|
|
|
+
|
|
|
if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
|
|
if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
|
|
|
return;
|
|
return;
|
|
|
|
|
|
|
|
clk_prepare_lock();
|
|
clk_prepare_lock();
|
|
|
|
|
+ owner = clk->owner;
|
|
|
kref_put(&clk->ref, __clk_release);
|
|
kref_put(&clk->ref, __clk_release);
|
|
|
clk_prepare_unlock();
|
|
clk_prepare_unlock();
|
|
|
|
|
|
|
|
- module_put(clk->owner);
|
|
|
|
|
|
|
+ module_put(owner);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*** clk rate change notifiers ***/
|
|
/*** clk rate change notifiers ***/
|