From e81f110f6eda74a4751fe101af803f508b8ce1b6 Mon Sep 17 00:00:00 2001 From: Jeykumar Sankaran Date: Tue, 19 May 2020 20:52:59 -0700 Subject: [PATCH] disp: msm: sde: make mnoc icc paths optional ICC frameworks may not be enabled for all the OS environments. SDE is expected to work in the environments where ICC paths are not defined e.g Trusted VM. Except mnoc bus, SDE is keeping all the other paths optional. This change adds mnoc bus to the optional list. Change-Id: I1e3d31a3b0f49fb32041bc7e2192b014f6497267 Signed-off-by: Jeykumar Sankaran --- msm/sde_power_handle.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/msm/sde_power_handle.c b/msm/sde_power_handle.c index ff947961..c0f3774f 100644 --- a/msm/sde_power_handle.c +++ b/msm/sde_power_handle.c @@ -446,8 +446,7 @@ static int sde_power_mnoc_bus_parse(struct platform_device *pdev, /* at least one databus path is required */ if (!pdbus->data_paths_cnt) { - pr_err("missing required interconnect:%s, rc:%d\n", name, rc); - return -EINVAL; + pr_info("mnoc interconnect path(s) not defined, rc: %d\n", rc); } else if (rc) { pr_info("ignoring error %d for non-primary data path\n", rc); rc = 0;