From: Stephen Boyd Date: Wed, 26 Feb 2014 18:59:24 +0000 (-0800) Subject: mfd: pm8921: Add DT match table X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c5865a5315dcf13fcad50aa8630eed11c9ff95a9;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git mfd: pm8921: Add DT match table Allow this driver to probe based on devicetree. Signed-off-by: Stephen Boyd Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/pm8921-core.c b/drivers/mfd/pm8921-core.c index e9340bd6d1ab..3aab6ace5eb5 100644 --- a/drivers/mfd/pm8921-core.c +++ b/drivers/mfd/pm8921-core.c @@ -392,6 +392,13 @@ static const struct regmap_config ssbi_regmap_config = { .reg_write = ssbi_reg_write }; +static const struct of_device_id pm8921_id_table[] = { + { .compatible = "qcom,pm8058", }, + { .compatible = "qcom,pm8921", }, + { } +}; +MODULE_DEVICE_TABLE(of, pm8921_id_table); + static int pm8921_probe(struct platform_device *pdev) { struct pm8921 *pmic; @@ -501,6 +508,7 @@ static struct platform_driver pm8921_driver = { .driver = { .name = "pm8921-core", .owner = THIS_MODULE, + .of_match_table = pm8921_id_table, }, };