diff options
| author | Lei Huang <huanglei@kylinos.cn> | 2026-03-31 10:54:05 +0300 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2026-03-31 11:20:19 +0300 |
| commit | d1888bf848ade6a9e71c7ba516fd215aa1bd8d65 (patch) | |
| tree | a7316b9df9354f4011613d3dcd011a027ad4ea67 | |
| parent | c1258a2924d3a2453a6e7a6581acd8d6e5c6ba70 (diff) | |
| download | linux-d1888bf848ade6a9e71c7ba516fd215aa1bd8d65.tar.xz | |
ALSA: hda/realtek: fix code style (ERROR: else should follow close brace '}')
Fix checkpatch code style errors:
ERROR: else should follow close brace '}'
#2300: FILE: sound/hda/codecs/realtek/alc269.c:2300:
+ }
+ else
Fixes: 31278997add6 ("ALSA: hda/realtek - Add headset quirk for Dell DT")
Signed-off-by: Lei Huang <huanglei@kylinos.cn>
Link: https://patch.msgid.link/20260331075405.78148-1-huanglei814@163.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
| -rw-r--r-- | sound/hda/codecs/realtek/alc269.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c index cb7b2dd107b5..bf837c6480f3 100644 --- a/sound/hda/codecs/realtek/alc269.c +++ b/sound/hda/codecs/realtek/alc269.c @@ -2270,9 +2270,9 @@ static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec, struct alc_spec *spec = codec->spec; spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; alc255_set_default_jack_type(codec); - } - else + } else { alc_fixup_headset_mode(codec, fix, action); + } } static void alc288_update_headset_jack_cb(struct hda_codec *codec, |
