diff options
| author | Linux Build Service Account <lnxbuild@quicinc.com> | 2017-06-28 11:59:58 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-06-28 11:59:58 -0700 |
| commit | 2a24534bf60606acd30b2b1e562d8bea47e71c4f (patch) | |
| tree | f6a5961e300af179d14efc344774410c12950ad3 | |
| parent | 821524723a13e3767fde59fd58292f2851c9ac9a (diff) | |
| parent | 1cc3948d8b710664f791b8560415411b4f9cea62 (diff) | |
Merge "soc: qcom: glink_smem_native_xport: Allocate smem item in non cache region"
| -rw-r--r-- | drivers/soc/qcom/glink_smem_native_xprt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/glink_smem_native_xprt.c b/drivers/soc/qcom/glink_smem_native_xprt.c index 99caa1c84dce..37193bbb23b7 100644 --- a/drivers/soc/qcom/glink_smem_native_xprt.c +++ b/drivers/soc/qcom/glink_smem_native_xprt.c @@ -2402,7 +2402,7 @@ static int glink_smem_native_probe(struct platform_device *pdev) einfo->tx_fifo = smem_alloc(SMEM_GLINK_NATIVE_XPRT_FIFO_0, einfo->tx_fifo_size, einfo->remote_proc_id, - SMEM_ITEM_CACHED_FLAG); + 0); if (!einfo->tx_fifo) { pr_err("%s: smem alloc of tx fifo failed\n", __func__); rc = -ENOMEM; |
