Browse Source

Merge "asoc: bolero: remove mutex_lock in bolero_runtime_suspend"

qctecmdr 6 years ago
parent
commit
9fbfb7ae16
1 changed files with 0 additions and 2 deletions
  1. 0 2
      asoc/codecs/bolero/bolero-cdc.c

+ 0 - 2
asoc/codecs/bolero/bolero-cdc.c

@@ -1049,13 +1049,11 @@ int bolero_runtime_suspend(struct device *dev)
 {
 	struct bolero_priv *priv = dev_get_drvdata(dev->parent);
 
-	mutex_lock(&priv->clk_lock);
 	if (priv->lpass_core_hw_vote != NULL)
 		clk_disable_unprepare(priv->lpass_core_hw_vote);
 	else
 		dev_dbg(dev, "%s: Invalid lpass core hw node\n",
 			__func__);
-	mutex_unlock(&priv->clk_lock);
 	return 0;
 }
 EXPORT_SYMBOL(bolero_runtime_suspend);