From 3099125057b535740e4cc45a24614e8e329d492b 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 aa71bc7cce8ef..d6aa3e8b02876 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);