drm/tests: hdmi: Drop unused drm_kunit_helper_connector_hdmi_init_funcs()

After updating the code to make use of the new EDID setup helper,
drm_kunit_helper_connector_hdmi_init_funcs() became unused, hence drop
it.

Acked-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
Link: https://lore.kernel.org/r/20250527-hdmi-conn-yuv-v5-11-74c9c4a8ac0c@collabora.com
Signed-off-by: Maxime Ripard <mripard@kernel.org>
This commit is contained in:
Cristian Ciocaltea
2025-05-27 15:11:19 +03:00
committed by Maxime Ripard
parent 74e98941b9
commit 95f0f68fc1

View File

@@ -206,16 +206,6 @@ __connector_hdmi_init(struct kunit *test,
return priv;
}
static
struct drm_atomic_helper_connector_hdmi_priv *
drm_kunit_helper_connector_hdmi_init_funcs(struct kunit *test,
unsigned int formats,
unsigned int max_bpc,
const struct drm_connector_hdmi_funcs *hdmi_funcs)
{
return __connector_hdmi_init(test, formats, max_bpc, hdmi_funcs, NULL, 0);
}
#define drm_kunit_helper_connector_hdmi_init_with_edid_funcs(test, formats, max_bpc, funcs, edid) \
__connector_hdmi_init(test, formats, max_bpc, funcs, edid, ARRAY_SIZE(edid))