@@ -1659,28 +1659,28 @@ static struct qcom_icc_bcm bcm_sn7 = {
static struct qcom_icc_bcm bcm_acv_disp = {
.name = "ACV",
.enable_mask = 0x1,
- .voter_idx = ICC_BCM_VOTER_APPS,
+ .voter_idx = ICC_BCM_VOTER_DISP,
.num_nodes = 1,
.nodes = { &ebi_disp },
};
static struct qcom_icc_bcm bcm_mc0_disp = {
.name = "MC0",
- .voter_idx = ICC_BCM_VOTER_APPS,
+ .voter_idx = ICC_BCM_VOTER_DISP,
.num_nodes = 1,
.nodes = { &ebi_disp },
};
static struct qcom_icc_bcm bcm_mm0_disp = {
.name = "MM0",
- .voter_idx = ICC_BCM_VOTER_APPS,
+ .voter_idx = ICC_BCM_VOTER_DISP,
.num_nodes = 1,
.nodes = { &qns_mem_noc_hf_disp },
};
static struct qcom_icc_bcm bcm_sh0_disp = {
.name = "SH0",
- .voter_idx = ICC_BCM_VOTER_APPS,
+ .voter_idx = ICC_BCM_VOTER_DISP,
.num_nodes = 1,
.nodes = { &qns_llcc_disp },
};
@@ -1688,7 +1688,7 @@ static struct qcom_icc_bcm bcm_sh0_disp = {
static struct qcom_icc_bcm bcm_sh1_disp = {
.name = "SH1",
.enable_mask = 0x1,
- .voter_idx = ICC_BCM_VOTER_APPS,
+ .voter_idx = ICC_BCM_VOTER_DISP,
.num_nodes = 2,
.nodes = { &qnm_mnoc_hf_disp, &qnm_pcie_disp },
};
The _DISP paths are expected to go through the DISP RSC. Point them to the correct place. Fixes: e6f0d6a30f73 ("interconnect: qcom: Add SM8550 interconnect provider driver") Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> --- drivers/interconnect/qcom/sm8550.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)