On 9/3/25 2:37 PM, Abel Vesa wrote: > On X Elite, the DP PHY needs another clock called refclk, > while all other platforms do not. So get all the clocks > regardless of how many there are provided. > > Cc: stable@xxxxxxxxxxxxxxx # v6.10 > Fixes: db83c107dc29 ("phy: qcom: edp: Add v6 specific ops and X1E80100 platform support") > Signed-off-by: Abel Vesa <abel.vesa@xxxxxxxxxx> > --- [...] > @@ -1092,11 +1094,11 @@ static int qcom_edp_phy_probe(struct platform_device *pdev) > if (IS_ERR(edp->pll)) > return PTR_ERR(edp->pll); > > - edp->clks[0].id = "aux"; > - edp->clks[1].id = "cfg_ahb"; > - ret = devm_clk_bulk_get(dev, ARRAY_SIZE(edp->clks), edp->clks); > - if (ret) > - return ret; > + edp->num_clks = devm_clk_bulk_get_all(dev, &edp->clks); > + if (edp->num_clks < 0) { > + dev_err(dev, "Failed to get clocks\n"); > + return edp->num_clks; return dev_err_probe(), also please print the ret code Konrad