On Tue 30 Apr 19:27 PDT 2019, Jeffrey Hugo wrote:
> +static const struct of_device_id mmcc_msm8998_match_table[] = {
> +     { .compatible = "qcom,mmcc-msm8998" },
> +     { }
> +};
> +MODULE_DEVICE_TABLE(of, mmcc_msm8998_match_table);
> +
> +static int mmcc_msm8998_probe(struct platform_device *pdev)
> +{
> +     struct regmap *regmap;
> +

Don't you want to wait for "xo" here as well?

> +     regmap = qcom_cc_map(pdev, &mmcc_msm8998_desc);
> +     if (IS_ERR(regmap))
> +             return PTR_ERR(regmap);
> +
> +     return qcom_cc_really_probe(pdev, &mmcc_msm8998_desc, regmap);
> +}
[..]
> +MODULE_DESCRIPTION("QCOM MMCC MSM8998 Driver");
> +MODULE_LICENSE("GPL v2");
> +MODULE_ALIAS("platform:mmcc-msm8998");

MODULE_DEVICE_TABLE() will provide the alias for module auto loading, so
drop this.

Regards,
Bjorn

Reply via email to