drm/panel: nv3052c: Add SPI device IDs
authorJohn Watts <contact@jookia.org>
Sun, 10 Dec 2023 06:55:50 +0000 (17:55 +1100)
committerNeil Armstrong <neil.armstrong@linaro.org>
Mon, 11 Dec 2023 09:12:29 +0000 (10:12 +0100)
SPI drivers needs their own list of compatible device IDs in order
for automatic module loading to work. Add those for this driver.

Signed-off-by: John Watts <contact@jookia.org>
Reviewed-by: Jessica Zhang <quic_jesszhan@quicinc.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20231210-fs035vg158-v5-2-d75adc75571f@jookia.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20231210-fs035vg158-v5-2-d75adc75571f@jookia.org
drivers/gpu/drm/panel/panel-newvision-nv3052c.c

index 589431523ce7ff2839a8e0ab81d27b5d6c20f3ba..90dea21f9856a67c6577f0ef993a5d62dc8380c3 100644 (file)
@@ -465,6 +465,12 @@ static const struct nv3052c_panel_info ltk035c5444t_panel_info = {
        .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
 };
 
+static const struct spi_device_id nv3052c_ids[] = {
+       { "ltk035c5444t", },
+       { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(spi, nv3052c_ids);
+
 static const struct of_device_id nv3052c_of_match[] = {
        { .compatible = "leadtek,ltk035c5444t", .data = &ltk035c5444t_panel_info },
        { /* sentinel */ }
@@ -476,6 +482,7 @@ static struct spi_driver nv3052c_driver = {
                .name = "nv3052c",
                .of_match_table = nv3052c_of_match,
        },
+       .id_table = nv3052c_ids,
        .probe = nv3052c_probe,
        .remove = nv3052c_remove,
 };