Skip to content

Commit

Permalink
ALSA: hda - hdmi: Fix missing ELD change event on plug/unplug
Browse files Browse the repository at this point in the history
The ELD ALSA control change event is sent by hdmi_present_sense() when
eld_changed is true.

Currently, it is only true when the ELD buffer contents have been
modified. However, the user-visible ELD controls also change to a
zero-length value and back when eld_valid is unset/set, and no event is
currently sent in such cases (such as when unplugging or replugging a
sink).

Fix the code to always set eld_changed if eld_valid value is changed,
and therefore to always send the change event when the user-visible
value changes.

Signed-off-by: Anssi Hannula <[email protected]>
Cc: David Henningsson <[email protected]>
Cc: <[email protected]> # 3.9+
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
anssih authored and tiwai committed Oct 20, 2014
1 parent f0b127f commit 6acce40
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions sound/pci/hda/patch_hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1583,19 +1583,22 @@ static bool hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
}
}

if (pin_eld->eld_valid && !eld->eld_valid) {
update_eld = true;
if (pin_eld->eld_valid != eld->eld_valid)
eld_changed = true;
}

if (pin_eld->eld_valid && !eld->eld_valid)
update_eld = true;

if (update_eld) {
bool old_eld_valid = pin_eld->eld_valid;
pin_eld->eld_valid = eld->eld_valid;
eld_changed = pin_eld->eld_size != eld->eld_size ||
if (pin_eld->eld_size != eld->eld_size ||
memcmp(pin_eld->eld_buffer, eld->eld_buffer,
eld->eld_size) != 0;
if (eld_changed)
eld->eld_size) != 0) {
memcpy(pin_eld->eld_buffer, eld->eld_buffer,
eld->eld_size);
eld_changed = true;
}
pin_eld->eld_size = eld->eld_size;
pin_eld->info = eld->info;

Expand Down

0 comments on commit 6acce40

Please sign in to comment.