mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
drm/bridge: anx7625: Update audio status while detecting
Previously, the audio status was not updated during detection, leading
to a persistent audio despite hot plugging events. To resolve this
issue, update the audio status during detection.
Fixes: 566fef1226
("drm/bridge: anx7625: add HDMI audio function")
Signed-off-by: Hsin-Te Yuan <yuanhsinte@chromium.org>
Reviewed-by: Robert Foss <rfoss@kernel.org>
Signed-off-by: Robert Foss <rfoss@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240416-anx7625-v3-1-f916ae31bdd7@chromium.org
This commit is contained in:
parent
c1e4d3a6de
commit
a665b4e603
@ -2469,15 +2469,22 @@ static void anx7625_bridge_atomic_disable(struct drm_bridge *bridge,
|
||||
mutex_unlock(&ctx->aux_lock);
|
||||
}
|
||||
|
||||
static void
|
||||
anx7625_audio_update_connector_status(struct anx7625_data *ctx,
|
||||
enum drm_connector_status status);
|
||||
|
||||
static enum drm_connector_status
|
||||
anx7625_bridge_detect(struct drm_bridge *bridge)
|
||||
{
|
||||
struct anx7625_data *ctx = bridge_to_anx7625(bridge);
|
||||
struct device *dev = ctx->dev;
|
||||
enum drm_connector_status status;
|
||||
|
||||
DRM_DEV_DEBUG_DRIVER(dev, "drm bridge detect\n");
|
||||
|
||||
return anx7625_sink_detect(ctx);
|
||||
status = anx7625_sink_detect(ctx);
|
||||
anx7625_audio_update_connector_status(ctx, status);
|
||||
return status;
|
||||
}
|
||||
|
||||
static const struct drm_edid *anx7625_bridge_edid_read(struct drm_bridge *bridge,
|
||||
|
Loading…
Reference in New Issue
Block a user