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

Commit eb3ef92f authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "asoc: wcd938x: initialize micb lock mutex"

parents 2f81be27 3dd19d0b
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -2923,9 +2923,10 @@ static int wcd938x_probe(struct platform_device *pdev)
		goto err;
	}

	mutex_init(&wcd938x->micb_lock);
	ret = wcd938x_add_slave_components(dev, &match);
	if (ret)
		goto err;
		goto err_lock_init;

	wcd938x_reset(dev);

@@ -2934,13 +2935,19 @@ static int wcd938x_probe(struct platform_device *pdev)
	return component_master_add_with_match(dev,
					&wcd938x_comp_ops, match);

err_lock_init:
	mutex_destroy(&wcd938x->micb_lock);
err:
	return ret;
}

static int wcd938x_remove(struct platform_device *pdev)
{
	struct wcd938x_priv *wcd938x = NULL;

	wcd938x = platform_get_drvdata(pdev);
	component_master_del(&pdev->dev, &wcd938x_comp_ops);
	mutex_destroy(&wcd938x->micb_lock);
	dev_set_drvdata(&pdev->dev, NULL);

	return 0;