On 11/22/23 14:42, Abel Vesa wrote:
The TCSR clock controller found on X1E80100 provides refclks for PCIE, USB and UFS. Add clock driver for it. Signed-off-by: Abel Vesa <abel.vesa@xxxxxxxxxx> ---
[...]
+static int tcsr_cc_x1e80100_probe(struct platform_device *pdev) +{ + struct regmap *regmap; + + regmap = qcom_cc_map(pdev, &tcsr_cc_x1e80100_desc); + if (IS_ERR(regmap)) + return PTR_ERR(regmap); + + return qcom_cc_really_probe(pdev, &tcsr_cc_x1e80100_desc, regmap); +}
qcom_cc_probe other than that: Reviewed-by: Konrad Dybcio <konrad.dybcio@xxxxxxxxxx> Konrad