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)qcom_cc_probe
+{
+ 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);
+}