extcon: max14577: Add proper dt-compatible strings
authorMarek Szyprowski <m.szyprowski@samsung.com>
Fri, 22 May 2020 10:24:47 +0000 (12:24 +0200)
committerChanwoo Choi <cw00.choi@samsung.com>
Fri, 29 May 2020 08:36:01 +0000 (17:36 +0900)
Add device tree compatible strings and create proper modalias structures
to let this driver load automatically if compiled as module, because
max14577 MFD driver creates MFD cells with such compatible strings.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/extcon/extcon-max14577.c

index 32f663436e6e9175ed401ffacb43bcfd94a0c99f..cc47d626095c9d026515ca4fd83ac1f01828f573 100644 (file)
@@ -782,9 +782,19 @@ static const struct platform_device_id max14577_muic_id[] = {
 };
 MODULE_DEVICE_TABLE(platform, max14577_muic_id);
 
+static const struct of_device_id of_max14577_muic_dt_match[] = {
+       { .compatible = "maxim,max14577-muic",
+         .data = (void *)MAXIM_DEVICE_TYPE_MAX14577, },
+       { .compatible = "maxim,max77836-muic",
+         .data = (void *)MAXIM_DEVICE_TYPE_MAX77836, },
+       { },
+};
+MODULE_DEVICE_TABLE(of, of_max14577_muic_dt_match);
+
 static struct platform_driver max14577_muic_driver = {
        .driver         = {
                .name   = "max14577-muic",
+               .of_match_table = of_max14577_muic_dt_match,
        },
        .probe          = max14577_muic_probe,
        .remove         = max14577_muic_remove,