summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsongxiebing <songxiebing@kylinos.cn>2026-04-05 04:42:08 +0300
committerTakashi Iwai <tiwai@suse.de>2026-04-06 11:42:09 +0300
commit7b5b7d04498d84bc7abc05b4e09a0d17c820d3b0 (patch)
treecf0647b5de65099958e262c79adf5b9a14068a4b
parent9551af27f8167bbb5f862a12f7f9bc5830e8f4e1 (diff)
downloadlinux-7b5b7d04498d84bc7abc05b4e09a0d17c820d3b0.tar.xz
ALSA: hda/realtek: Fix code style error
Output of checkpatch shows error: ERROR: else should follow close brace '}' 2168: FILE: sound/hda/codecs/realtek/realtek.c:2168: + } + else So fix it. Signed-off-by: songxiebing <songxiebing@kylinos.cn> Link: https://patch.msgid.link/20260405014208.167364-1-songxiebing@kylinos.cn Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/hda/codecs/realtek/realtek.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/hda/codecs/realtek/realtek.c b/sound/hda/codecs/realtek/realtek.c
index aad265c0a5b6..b240f13b0438 100644
--- a/sound/hda/codecs/realtek/realtek.c
+++ b/sound/hda/codecs/realtek/realtek.c
@@ -2164,8 +2164,7 @@ void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
if (action == HDA_FIXUP_ACT_PRE_PROBE) {
struct alc_spec *spec = codec->spec;
spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
- }
- else
+ } else
alc_fixup_headset_mode(codec, fix, action);
}
EXPORT_SYMBOL_NS_GPL(alc_fixup_headset_mode_no_hp_mic, "SND_HDA_CODEC_REALTEK");