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

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

Merge "ASoC: msm: Update the name for pcm platform driver."

parents 206cbf1d b97bfcc3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -920,9 +920,9 @@ static int msm_pcm_probe(struct platform_device *pdev)
	struct msm_plat_data *pdata;

	rc = of_property_read_u32(pdev->dev.of_node,
				"qcom,msm-pcm-dsp-id", &id);
				"qti,msm-pcm-dsp-id", &id);
	if (rc) {
		dev_err(&pdev->dev, "%s: qcom,msm-pcm-dsp-id missing in DT node\n",
		dev_err(&pdev->dev, "%s: qti,msm-pcm-dsp-id missing in DT node\n",
					__func__);
		return rc;
	}
@@ -934,7 +934,7 @@ static int msm_pcm_probe(struct platform_device *pdev)
	}

	if (of_property_read_bool(pdev->dev.of_node,
				"qcom,msm-pcm-low-latency"))
				"qti,msm-pcm-low-latency"))
		pdata->perf_mode = 1;
	else
		pdata->perf_mode = 0;
@@ -959,7 +959,7 @@ static int msm_pcm_remove(struct platform_device *pdev)
	return 0;
}
static const struct of_device_id msm_pcm_dt_match[] = {
	{.compatible = "qcom,msm-pcm-dsp"},
	{.compatible = "qti,msm-pcm-dsp"},
	{}
};
MODULE_DEVICE_TABLE(of, msm_pcm_dt_match);