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 8A2F33546D0; Wed, 20 May 2026 16:42:41 +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=1779295362; cv=none; b=YDWCGL2xOIlXVh7GEt1e4t+xcCBgRvQUmuvsFCkSfn2yV4rLUR2fMPdssrnd3BN74EttVhgl7TQsuDDhbcKE3navqjQMUFrBI0utGOR/xCaDlB+gBkm7imbdVPc0KD8qiz+BZQknK+yjS/ua2Ifh8VbXTmxQRcb4bD4AHwelkHE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779295362; c=relaxed/simple; bh=9rD+s4FXSsacKXoCw5MCReDe5Vdr5eaIMTuZ+MVxW+g=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=lW5kY5mvNPTwAotpHJhXFBsmvFI77A0XNNVBkKNeOrkU6Z+zQIfV+SEj/Cpcktp/5/M0oDuhf8eaIUVVBlGw5ayElr41zTdHgDRIOjNxsbEMQxqakOxEnJCcQKBL20J6QI1E9J3Lym086GzZmQLKJbe3O+RSsXqPFDj3rYQXfEA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=MG8gkgBo; 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="MG8gkgBo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EEF061F000E9; Wed, 20 May 2026 16:42:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779295361; bh=VCLDKlc3RX3Uu5udX4evR6xePk3F3yCGNDD385v5KV0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=MG8gkgBo0bKPdACYJK8jCIg1ZL1SmMLlU+1D79b4dSSZmo98KZgL4PkudGoGH7YDN yL6BGebm2yGDycEtUNNRND4cM4mR2a/MnUOBt2Uy0phagtLZ3jyEtMx7SLWdLdWT1V WoUW4cRTfxliivg3895sGdGJmin+HVvE3f9kNan8= 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 7.0 0349/1146] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Date: Wed, 20 May 2026 18:09:59 +0200 Message-ID: <20260520162156.096994069@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162148.390695140@linuxfoundation.org> References: <20260520162148.390695140@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 7.0-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/hda/codecs/realtek/alc269.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c index 8e135bcaa28e6..cbc24d71a1115 100644 --- a/sound/hda/codecs/realtek/alc269.c +++ b/sound/hda/codecs/realtek/alc269.c @@ -2296,9 +2296,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