Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c9e0617 authored by Mark Brown's avatar Mark Brown
Browse files

Merge remote-tracking branch 'asoc/fix/atmel' into asoc-linus

parents 3b2f64d0 9a9b1c61
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -66,14 +66,19 @@ EXPORT_SYMBOL(ssc_request);

void ssc_free(struct ssc_device *ssc)
{
	bool disable_clk = true;

	spin_lock(&user_lock);
	if (ssc->user) {
	if (ssc->user)
		ssc->user--;
		clk_disable_unprepare(ssc->clk);
	} else {
	else {
		disable_clk = false;
		dev_dbg(&ssc->pdev->dev, "device already free\n");
	}
	spin_unlock(&user_lock);

	if (disable_clk)
		clk_disable_unprepare(ssc->clk);
}
EXPORT_SYMBOL(ssc_free);