Commit 550033fd authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda/realtek: Simplify with str_yes_no()

Use the standard helper for simplifying the code.
Merely cleanup, no behavior change.

Link: https://patch.msgid.link/20250109162318.9172-2-tiwai@suse.de


Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 2be952ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5900,7 +5900,7 @@ static void alc_determine_headset_type(struct hda_codec *codec)
	}

	codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
		    is_ctia ? "yes" : "no");
		  str_yes_no(is_ctia));
	spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
}