@@ -346,6 +346,13 @@ static const struct of_device_id nt39016_of_match[] = {
};
MODULE_DEVICE_TABLE(of, nt39016_of_match);
+static const struct spi_device_id nt39016_spi_ids[] = {
+ { .name = "kd035g6-54nt", .driver_data = (uintptr_t)&kd035g6_info },
+ { .name = "nt39016", .driver_data = 0 },
+ { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(spi, nt39016_spi_ids);
+
static struct spi_driver nt39016_driver = {
.driver = {
.name = "nt39016",
@@ -353,6 +360,7 @@ static struct spi_driver nt39016_driver = {
},
.probe = nt39016_probe,
.remove = nt39016_remove,
+ .id_table = nt39016_spi_ids,
};
module_spi_driver(nt39016_driver);
Currently autoloading for SPI devices does not use the DT ID table, it uses SPI modalises. Supporting OF modalises is going to be difficult if not impractical, an attempt was made but has been reverted, so ensure that module autoloading works for this driver by adding an id_table listing the SPI IDs for everything. Fixes: 96c8395e2166 ("spi: Revert modalias changes") Signed-off-by: Mark Brown <broonie@kernel.org> --- drivers/gpu/drm/panel/panel-novatek-nt39016.c | 8 ++++++++ 1 file changed, 8 insertions(+)