summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSathish Ambley <sathishambley@codeaurora.org>2015-12-16 10:01:27 -0800
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 21:23:25 -0700
commit0cffc97b53a461c824adbcf95ec99446d552533f (patch)
tree808518438a26b0708d187b740853fe0881540e7a
parent08f929d272cbb737e39ab83df7cd23d502119a4b (diff)
ARM: dts: msm: ADSPRPC: Remove IOMMU domain adsp_shared_domain
Remove IOMMU domain adsp_shared_domain as domain is created at runtime. Change-Id: Ic5e4aa9f05167be7c721b3c1fd71ab889c1fcd1d Acked-by: Himateja Reddy <hmreddy@qti.qualcomm.com> Signed-off-by: Sathish Ambley <sathishambley@codeaurora.org>
-rw-r--r--drivers/char/adsprpc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/adsprpc.c b/drivers/char/adsprpc.c
index 4a0573924c24..0dfe4fa63646 100644
--- a/drivers/char/adsprpc.c
+++ b/drivers/char/adsprpc.c
@@ -1917,7 +1917,7 @@ static int fastrpc_cb_legacy_probe(struct device *dev)
goto bail;
VERIFY(err, 0 != (ctx_node = of_parse_phandle(
domains_child_node,
- "qcom,adsp-shared-domain-phandle", 0)));
+ "qcom,adsp-shared-phandle", 0)));
if (err)
goto bail;
VERIFY(err, 0 != of_get_property(domains_child_node,
@@ -1936,14 +1936,14 @@ static int fastrpc_cb_legacy_probe(struct device *dev)
VERIFY(err, 0 != (name = of_get_property(ctx_node, "label", NULL)));
if (err)
goto bail;
- VERIFY(err, 0 != of_get_property(ctx_node,
+ VERIFY(err, 0 != of_get_property(domains_child_node,
"qcom,virtual-addr-pool", &range_size));
if (err)
goto bail;
VERIFY(err, range = kzalloc(range_size, GFP_KERNEL));
if (err)
goto bail;
- ret = of_property_read_u32_array(ctx_node,
+ ret = of_property_read_u32_array(domains_child_node,
"qcom,virtual-addr-pool",
range,
range_size/sizeof(unsigned int));