diff options
author | Dmitry Baryshkov <dmitry.baryshkov@linaro.org> | 2024-06-24 19:39:58 +0200 |
---|---|---|
committer | Dmitry Baryshkov <dmitry.baryshkov@linaro.org> | 2024-06-25 14:09:56 +0200 |
commit | 06ec7893a4b48a1fad9e94cb670862ddd65b6eab (patch) | |
tree | e38928ccebdf89a83405aff9fcc5ed67d3dc56b0 /include/drm/display | |
parent | drm/ttm/tests: add missing MODULE_DESCRIPTION() macros (diff) | |
download | linux-06ec7893a4b48a1fad9e94cb670862ddd65b6eab.tar.xz linux-06ec7893a4b48a1fad9e94cb670862ddd65b6eab.zip |
drm/connector: hdmi: shorten too long function name
If CONFIG_MODVERSIONS is enabled, then using the HDMI Connector
framework can result in build failures. Rename the function to make it
fit into the name requirements.
ERROR: modpost: too long symbol "drm_atomic_helper_connector_hdmi_disable_audio_infoframe" [drivers/gpu/drm/msm/msm.ko]
Reported-by: Mark Brown <broonie@kernel.org>
Reviewed-by: Maxime Ripard <mripard@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240624-hdmi-connector-shorten-name-v1-1-5bd3410138db@linaro.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Diffstat (limited to 'include/drm/display')
-rw-r--r-- | include/drm/display/drm_hdmi_state_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/display/drm_hdmi_state_helper.h b/include/drm/display/drm_hdmi_state_helper.h index 285f366cf716..2d45fcfa4619 100644 --- a/include/drm/display/drm_hdmi_state_helper.h +++ b/include/drm/display/drm_hdmi_state_helper.h @@ -16,7 +16,7 @@ int drm_atomic_helper_connector_hdmi_check(struct drm_connector *connector, int drm_atomic_helper_connector_hdmi_update_audio_infoframe(struct drm_connector *connector, struct hdmi_audio_infoframe *frame); -int drm_atomic_helper_connector_hdmi_disable_audio_infoframe(struct drm_connector *connector); +int drm_atomic_helper_connector_hdmi_clear_audio_infoframe(struct drm_connector *connector); int drm_atomic_helper_connector_hdmi_update_infoframes(struct drm_connector *connector, struct drm_atomic_state *state); |