]> Git Repo - J-linux.git/commitdiff
Input: ads7846 - use spi_device_id table
authorAlexander Stein <[email protected]>
Wed, 19 Jun 2024 12:27:02 +0000 (14:27 +0200)
committerDmitry Torokhov <[email protected]>
Thu, 20 Jun 2024 15:39:32 +0000 (08:39 -0700)
As the driver supports more devices over time the single MODULE_ALIAS
is complete and raises several warnings:
SPI driver ads7846 has no spi_device_id for ti,tsc2046
SPI driver ads7846 has no spi_device_id for ti,ads7843
SPI driver ads7846 has no spi_device_id for ti,ads7845
SPI driver ads7846 has no spi_device_id for ti,ads7873

Fix this by adding a spi_device_id table and removing the manual
MODULE_ALIAS.

Signed-off-by: Alexander Stein <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
drivers/input/touchscreen/ads7846.c

index d2bbb436a77df927b95c1d9494beaf3d2bf6abf6..4d13db13b9e578539ab38e367ec7d4a213dff0c9 100644 (file)
@@ -1111,6 +1111,16 @@ static const struct of_device_id ads7846_dt_ids[] = {
 };
 MODULE_DEVICE_TABLE(of, ads7846_dt_ids);
 
+static const struct spi_device_id ads7846_spi_ids[] = {
+       { "tsc2046", 7846 },
+       { "ads7843", 7843 },
+       { "ads7845", 7845 },
+       { "ads7846", 7846 },
+       { "ads7873", 7873 },
+       { },
+};
+MODULE_DEVICE_TABLE(spi, ads7846_spi_ids);
+
 static const struct ads7846_platform_data *ads7846_get_props(struct device *dev)
 {
        struct ads7846_platform_data *pdata;
@@ -1386,10 +1396,10 @@ static struct spi_driver ads7846_driver = {
        },
        .probe          = ads7846_probe,
        .remove         = ads7846_remove,
+       .id_table       = ads7846_spi_ids,
 };
 
 module_spi_driver(ads7846_driver);
 
 MODULE_DESCRIPTION("ADS7846 TouchScreen Driver");
 MODULE_LICENSE("GPL");
-MODULE_ALIAS("spi:ads7846");
This page took 0.050537 seconds and 4 git commands to generate.