mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 01:24:33 +00:00
06ec7893a4
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>
24 lines
866 B
C
24 lines
866 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef DRM_HDMI_STATE_HELPER_H_
|
|
#define DRM_HDMI_STATE_HELPER_H_
|
|
|
|
struct drm_atomic_state;
|
|
struct drm_connector;
|
|
struct drm_connector_state;
|
|
struct hdmi_audio_infoframe;
|
|
|
|
void __drm_atomic_helper_connector_hdmi_reset(struct drm_connector *connector,
|
|
struct drm_connector_state *new_conn_state);
|
|
|
|
int drm_atomic_helper_connector_hdmi_check(struct drm_connector *connector,
|
|
struct drm_atomic_state *state);
|
|
|
|
int drm_atomic_helper_connector_hdmi_update_audio_infoframe(struct drm_connector *connector,
|
|
struct hdmi_audio_infoframe *frame);
|
|
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);
|
|
|
|
#endif // DRM_HDMI_STATE_HELPER_H_
|