From 93a3c5887e505a5d655b2103a8431a3333a7409c 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 aa71bc7cce8e..d6aa3e8b0287 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);