iio: adc: at91_adc: remove at91_adc_ids
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Sat, 28 Nov 2020 22:28:09 +0000 (23:28 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Thu, 3 Dec 2020 19:40:22 +0000 (19:40 +0000)
The driver is DT only since commit ead1c9f376db ("iio: adc: at91_adc:
remove platform data and move defs in driver file"). Remove the leftover
platform_device_id array.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20201128222818.1910764-2-alexandre.belloni@bootlin.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/at91_adc.c

index 601708168082015f28e1dfd93fb993baff30e6f4..8501f3aeeb4ef743a26d7def2838e23616416f83 100644 (file)
@@ -1425,29 +1425,9 @@ static const struct of_device_id at91_adc_dt_ids[] = {
 };
 MODULE_DEVICE_TABLE(of, at91_adc_dt_ids);
 
-static const struct platform_device_id at91_adc_ids[] = {
-       {
-               .name = "at91sam9260-adc",
-               .driver_data = (unsigned long)&at91sam9260_caps,
-       }, {
-               .name = "at91sam9rl-adc",
-               .driver_data = (unsigned long)&at91sam9rl_caps,
-       }, {
-               .name = "at91sam9g45-adc",
-               .driver_data = (unsigned long)&at91sam9g45_caps,
-       }, {
-               .name = "at91sam9x5-adc",
-               .driver_data = (unsigned long)&at91sam9x5_caps,
-       }, {
-               /* terminator */
-       }
-};
-MODULE_DEVICE_TABLE(platform, at91_adc_ids);
-
 static struct platform_driver at91_adc_driver = {
        .probe = at91_adc_probe,
        .remove = at91_adc_remove,
-       .id_table = at91_adc_ids,
        .driver = {
                   .name = DRIVER_NAME,
                   .of_match_table = at91_adc_dt_ids,