From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6B1CE36CE19; Wed, 20 May 2026 18:07:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779300476; cv=none; b=qvlcLOCE0AWNeKQ8ZWwWbvSgGyy64xAglsKtl9A1cdvVDGxq8oTkUK/T4SJKCAcbXK0axbBWuc0rXM1k3kkAvEoJO/o7NosIkiPmmtp9G1ZK9XnA9vZMovioeLk96nsvwROBlWcJLpxoefm0/YOiQa1Er4WRBo+KmoLmrebNWZA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779300476; c=relaxed/simple; bh=HjQy2g2RVzw8PT4gu6Hky8yUTpDOC/gxSCPBqpivqk4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Cu8tCSZpM+QlszffnQEhoW6VqFwu6zEqE3Z5c00+zyrEnkPRtq6AwsP3izt6NrZViv7Hm4baY5RUx+2Y5HiDrfxGg8NwQKwOCFskvfKz+Vj0igpSmtuuNQMSuDIiHJLff0SVJayZ86eoQDEjp7qKBt00w0WzloMCQL5QSDjxvpI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=n1dmFNne; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="n1dmFNne" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D0BC61F000E9; Wed, 20 May 2026 18:07:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779300475; bh=jJ5j8WLKTdoOzh7UJbZAOwFaQO29eZSWaVT3XMYqsCw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=n1dmFNne1OYk8oC4/E+GWKhAc2XsoV1afsE5JuIlPHTzJ5ep9kavzU6kD1ytAhhxu cFot2t0v4uy6EwRcEu+m0w1loCBxgm/N4GEg/C55ieQIg0bYwlqJ8Oifku3/Gl+28M u4Lv5I0LJ2wcvfstuNi7Lt32M+tsupq0/HCQ/YYw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Lei Huang , Takashi Iwai , Sasha Levin Subject: [PATCH 6.12 189/666] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Date: Wed, 20 May 2026 18:16:40 +0200 Message-ID: <20260520162115.298186126@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162111.222830634@linuxfoundation.org> References: <20260520162111.222830634@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Lei Huang [ Upstream commit d1888bf848ade6a9e71c7ba516fd215aa1bd8d65 ] 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 Link: https://patch.msgid.link/20260331075405.78148-1-huanglei814@163.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/pci/hda/patch_realtek.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 4cab9696fdab0..c420cf5d87e99 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -6428,9 +6428,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, -- 2.53.0