iio: adc: ep93xx: Add OF support
authorAlexander Sverdlin <alexander.sverdlin@gmail.com>
Fri, 23 Dec 2022 16:26:36 +0000 (17:26 +0100)
committerNikita Shubin <nikita.shubin@maquefel.me>
Tue, 14 Feb 2023 08:41:44 +0000 (11:41 +0300)
Prepare for EP93xx conversion to DT.

Signed-off-by: Alexander Sverdlin <alexander.sverdlin@gmail.com>
drivers/iio/adc/ep93xx_adc.c

index fd5a9404c8dc4b07ffa157c026c1ea01a171740f..a35e6cead67d5b1d448ad6eeefec651dca601497 100644 (file)
@@ -21,6 +21,7 @@
 #include <linux/module.h>
 #include <linux/mutex.h>
 #include <linux/platform_device.h>
+#include <linux/of.h>
 
 /*
  * This code could benefit from real HR Timers, but jiffy granularity would
@@ -227,9 +228,16 @@ static int ep93xx_adc_remove(struct platform_device *pdev)
        return 0;
 }
 
+static const struct of_device_id ep93xx_adc_of_ids[] = {
+       { .compatible = "cirrus,ep9301-adc" },
+       {}
+};
+MODULE_DEVICE_TABLE(of, ep93xx_adc_of_ids);
+
 static struct platform_driver ep93xx_adc_driver = {
        .driver = {
                .name = "ep93xx-adc",
+               .of_match_table = ep93xx_adc_of_ids,
        },
        .probe = ep93xx_adc_probe,
        .remove = ep93xx_adc_remove,