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

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

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

parents 9b69c234 656566e8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2004,7 +2004,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
@@ -4656,7 +4656,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;