From: Wei Yongjun <weiyongjun1@xxxxxxxxxx> Add spi_device_id entries to silent following SPI warning: SPI driver nt39016 has no spi_device_id for kingdisplay,kd035g6-54nt Signed-off-by: Wei Yongjun <weiyongjun1@xxxxxxxxxx> --- drivers/gpu/drm/panel/panel-novatek-nt39016.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/gpu/drm/panel/panel-novatek-nt39016.c b/drivers/gpu/drm/panel/panel-novatek-nt39016.c index f58cfb10b58a..416e857f4e98 100644 --- a/drivers/gpu/drm/panel/panel-novatek-nt39016.c +++ b/drivers/gpu/drm/panel/panel-novatek-nt39016.c @@ -344,6 +344,12 @@ static const struct of_device_id nt39016_of_match[] = { }; MODULE_DEVICE_TABLE(of, nt39016_of_match); +static const struct spi_device_id nt39016_ids[] = { + { "kd035g6-54nt", (kernel_ulong_t)&kd035g6_info }, + { }, +}; +MODULE_DEVICE_TABLE(spi, nt39016_ids); + static struct spi_driver nt39016_driver = { .driver = { .name = "nt39016", @@ -351,6 +357,7 @@ static struct spi_driver nt39016_driver = { }, .probe = nt39016_probe, .remove = nt39016_remove, + .id_table = nt39016_ids, }; module_spi_driver(nt39016_driver); -- 2.34.1