Re: [PATCH V3] ALSA: hda/senarytech: add senarytech codec support

From: Takashi Iwai
Date: Fri Jun 14 2024 - 08:55:16 EST


On Fri, 14 Jun 2024 05:16:30 +0200,
bo liu wrote:
>
> +static void senary_auto_parse_eapd(struct hda_codec *codec)
> +{
> + struct senary_spec *spec = codec->spec;
> + hda_nid_t nid;
> +
> + for_each_hda_codec_node(nid, codec) {
> + if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
> + continue;
> + if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD))
> + continue;
> + spec->eapds[spec->num_eapds++] = nid;
> + if (spec->num_eapds >= ARRAY_SIZE(spec->eapds))
> + break;
> + }
> +
> + /* chips always have more than two EAPDs, we can control EAPD per pin. */
> + spec->dynamic_eapd = 1;

So it's a fixed value, and we can drop this flag and the
conditionals. Let's clean up the code.


thanks,

Takashi