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

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

Merge "soc: qcom: fix to avoid multiple memory allocations"

parents c63da8be b9732c98
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -531,6 +531,13 @@ static int wdsp_glink_ch_info_init(struct wdsp_glink_priv *wpriv,
	u8 *payload;
	u32 ch_size, ch_cfg_size;

	mutex_lock(&wpriv->glink_mutex);
	if (wpriv->ch) {
		dev_err(wpriv->dev, "%s: glink ch memory is already allocated\n",
			 __func__);
		ret = -EINVAL;
		goto done;
	}
	payload = (u8 *)pkt->payload;
	no_of_channels = pkt->no_of_channels;

@@ -611,6 +618,7 @@ err_ch_mem:
	wpriv->no_of_channels = 0;

done:
	mutex_unlock(&wpriv->glink_mutex);
	return ret;
}