Browse Source

omapdrm: panel: td028ttec1: replace MODULE_ALIAS by MODULE_DEVICE_TABLE

to make it easier to keep in sync with the OF device table.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
H. Nikolaus Schaller 7 years ago
parent
commit
aa8eeb9967

+ 10 - 2
drivers/gpu/drm/omapdrm/displays/panel-tpo-td028ttec1.c

@@ -460,9 +460,19 @@ static const struct of_device_id td028ttec1_of_match[] = {
 
 
 MODULE_DEVICE_TABLE(of, td028ttec1_of_match);
 MODULE_DEVICE_TABLE(of, td028ttec1_of_match);
 
 
+static const struct spi_device_id td028ttec1_ids[] = {
+	{ "toppoly,td028ttec1", 0 },
+	{ "tpo,td028ttec1", 0},
+	{ /* sentinel */ }
+};
+
+MODULE_DEVICE_TABLE(spi, td028ttec1_ids);
+
+
 static struct spi_driver td028ttec1_spi_driver = {
 static struct spi_driver td028ttec1_spi_driver = {
 	.probe		= td028ttec1_panel_probe,
 	.probe		= td028ttec1_panel_probe,
 	.remove		= td028ttec1_panel_remove,
 	.remove		= td028ttec1_panel_remove,
+	.id_table	= td028ttec1_ids,
 
 
 	.driver         = {
 	.driver         = {
 		.name   = "panel-tpo-td028ttec1",
 		.name   = "panel-tpo-td028ttec1",
@@ -473,8 +483,6 @@ static struct spi_driver td028ttec1_spi_driver = {
 
 
 module_spi_driver(td028ttec1_spi_driver);
 module_spi_driver(td028ttec1_spi_driver);
 
 
-MODULE_ALIAS("spi:tpo,td028ttec1");
-MODULE_ALIAS("spi:toppoly,td028ttec1");
 MODULE_AUTHOR("H. Nikolaus Schaller <hns@goldelico.com>");
 MODULE_AUTHOR("H. Nikolaus Schaller <hns@goldelico.com>");
 MODULE_DESCRIPTION("Toppoly TD028TTEC1 panel driver");
 MODULE_DESCRIPTION("Toppoly TD028TTEC1 panel driver");
 MODULE_LICENSE("GPL");
 MODULE_LICENSE("GPL");

+ 9 - 2
drivers/video/fbdev/omap2/omapfb/displays/panel-tpo-td028ttec1.c

@@ -463,9 +463,18 @@ static const struct of_device_id td028ttec1_of_match[] = {
 
 
 MODULE_DEVICE_TABLE(of, td028ttec1_of_match);
 MODULE_DEVICE_TABLE(of, td028ttec1_of_match);
 
 
+static const struct spi_device_id td028ttec1_ids[] = {
+	{ "toppoly,td028ttec1", 0 },
+	{ "tpo,td028ttec1", 0},
+	{ /* sentinel */ }
+};
+
+MODULE_DEVICE_TABLE(spi, td028ttec1_ids);
+
 static struct spi_driver td028ttec1_spi_driver = {
 static struct spi_driver td028ttec1_spi_driver = {
 	.probe		= td028ttec1_panel_probe,
 	.probe		= td028ttec1_panel_probe,
 	.remove		= td028ttec1_panel_remove,
 	.remove		= td028ttec1_panel_remove,
+	.id_table	= td028ttec1_ids,
 
 
 	.driver         = {
 	.driver         = {
 		.name   = "panel-tpo-td028ttec1",
 		.name   = "panel-tpo-td028ttec1",
@@ -476,8 +485,6 @@ static struct spi_driver td028ttec1_spi_driver = {
 
 
 module_spi_driver(td028ttec1_spi_driver);
 module_spi_driver(td028ttec1_spi_driver);
 
 
-MODULE_ALIAS("spi:tpo,td028ttec1");
-MODULE_ALIAS("spi:toppoly,td028ttec1");
 MODULE_AUTHOR("H. Nikolaus Schaller <hns@goldelico.com>");
 MODULE_AUTHOR("H. Nikolaus Schaller <hns@goldelico.com>");
 MODULE_DESCRIPTION("Toppoly TD028TTEC1 panel driver");
 MODULE_DESCRIPTION("Toppoly TD028TTEC1 panel driver");
 MODULE_LICENSE("GPL");
 MODULE_LICENSE("GPL");