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

Commit 28f3b6f1 authored by Omair M Abdullah's avatar Omair M Abdullah Committed by Mark Brown
Browse files

ASoC: Intel: Skylake: Print error code in IPC for SKL

parent a750ba5f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -362,6 +362,12 @@ static void skl_ipc_process_reply(struct sst_generic_ipc *ipc,
		break;
	}

	if (reply != IPC_GLB_REPLY_SUCCESS) {
		dev_err(ipc->dev, "ipc FW reply: reply=%d", reply);
		dev_err(ipc->dev, "FW Error Code: %u\n",
			ipc->dsp->fw_ops.get_fw_errcode(ipc->dsp));
	}

	list_del(&msg->list);
	sst_ipc_tx_msg_reply_complete(ipc, msg);
}