From 356bfd907d66ea7b7b9c0d114d348b5b1a5e67b6 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Mon, 8 Dec 2025 12:10:37 -0500 Subject: [PATCH] fix(drivers/drm/eswin): correctly terminate of_device_id This adds a null value to `of_device_id` so it is correctly terminated. Fixes #14 Signed-off-by: Alex Lowe --- drivers/gpu/drm/eswin/dw_hdmi_hdcp2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/eswin/dw_hdmi_hdcp2.c b/drivers/gpu/drm/eswin/dw_hdmi_hdcp2.c index 0ad189a141d1..39ecb8a653e9 100644 --- a/drivers/gpu/drm/eswin/dw_hdmi_hdcp2.c +++ b/drivers/gpu/drm/eswin/dw_hdmi_hdcp2.c @@ -861,6 +861,7 @@ static const struct of_device_id dw_hdmi_hdcp2_dt_ids[] = { { .compatible = "eswin,dw-hdmi-hdcp2", }, + { /* end of table */ } }; MODULE_DEVICE_TABLE(of, dw_hdmi_hdcp2_dt_ids);