On Tue, 10 Jan 2023 00:58:40 +0100, Luka Guzenko wrote: > > The HP Spectre x360 13-aw0xxx devices use the ALC285 codec with GPIO 0x04 > controlling the micmute LED and COEF 0x0b index 8 controlling the mute LED. > A quirk was added to make these work as well as a fixup entry. > > Signed-off-by: Luka Guzenko <l.guzenko@xxxxxx> > --- > sound/pci/hda/patch_realtek.c | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c > index 3794b522c222..6a76a2eddd3c 100644 > --- a/sound/pci/hda/patch_realtek.c > +++ b/sound/pci/hda/patch_realtek.c > @@ -4644,6 +4644,16 @@ static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec, > } > } > > +static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec *codec, > + const struct hda_fixup *fix, int action) > +{ > + struct alc_spec *spec = codec->spec; > + > + if (action != HDA_FIXUP_ACT_PRE_PROBE) > + spec->micmute_led_polarity = 1; Is this condition correct? It's usually other way round; a flag is set up only once at parsing. thanks, Takashi