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

Commit 082e5641 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "asoc: codecs: Fix LPASS register access during bootup"

parents da394a6c d1f3add8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1957,7 +1957,8 @@ static int msm_sdw_probe(struct platform_device *pdev)
	int adsp_state;

	adsp_state = apr_get_subsys_state();
	if (adsp_state != APR_SUBSYS_LOADED) {
	if (adsp_state != APR_SUBSYS_LOADED ||
		!q6core_is_adsp_ready()) {
		dev_err(&pdev->dev, "Adsp is not loaded yet %d\n",
				adsp_state);
		return -EPROBE_DEFER;
+2 −1
Original line number Diff line number Diff line
@@ -4538,7 +4538,8 @@ static int msm_anlg_cdc_probe(struct platform_device *pdev)
	int adsp_state;

	adsp_state = apr_get_subsys_state();
	if (adsp_state != APR_SUBSYS_LOADED) {
	if (adsp_state != APR_SUBSYS_LOADED ||
		!q6core_is_adsp_ready()) {
		dev_err(&pdev->dev, "Adsp is not loaded yet %d\n",
			adsp_state);
		return -EPROBE_DEFER;