From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BBDA7C43219 for ; Sat, 27 Apr 2019 01:47:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8B20720873 for ; Sat, 27 Apr 2019 01:47:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556329679; bh=fojOXezK4tvpm+p41ndowq5Isyi31sJIHb+yaFyIRXs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Fsy5YdLUKh6NLPFy6pHscYV91zuaryH36efbKRSvjZhCPW8U7WY+ps2+xDKBb39je XoSKuIZI2Nc1b75uaq3vZ9KoCSwf/ds3ApA/K0Jj176sS09OpMAPdcR0xTUWrdz0n6 qDzhSuS0F31Rysat8dam4QSsafKhqFMJAxP18V5Y= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728807AbfD0Br6 (ORCPT ); Fri, 26 Apr 2019 21:47:58 -0400 Received: from mail.kernel.org ([198.145.29.99]:46852 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728617AbfD0Bmo (ORCPT ); Fri, 26 Apr 2019 21:42:44 -0400 Received: from sasha-vm.mshome.net (c-73-47-72-35.hsd1.nh.comcast.net [73.47.72.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A357D208CB; Sat, 27 Apr 2019 01:42:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556329364; bh=fojOXezK4tvpm+p41ndowq5Isyi31sJIHb+yaFyIRXs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Kbst212XbgNVTLehhwRA0oXkfRN+1wBrB/+g6jlckqMCFREdhi3bKNy+0UxDdThfc xBbRab+DwnG4rh5ox1NXj0/HCc9GG+IESmiF0494L/jkDYxkGWmugQW9yZ5I7VNdz6 9XjrHPWQBrBqt1+VK1YGaqSYKulRJdCRGIpSjMD0= From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Annaliese McDermond , Mark Brown , Sasha Levin Subject: [PATCH AUTOSEL 4.14 11/32] ASoC: tlv320aic32x4: Fix Common Pins Date: Fri, 26 Apr 2019 21:42:02 -0400 Message-Id: <20190427014224.8274-11-sashal@kernel.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20190427014224.8274-1-sashal@kernel.org> References: <20190427014224.8274-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Annaliese McDermond [ Upstream commit c63adb28f6d913310430f14c69f0a2ea55eed0cc ] The common pins were mistakenly not added to the DAPM graph. Adding these pins will allow valid graphs to be created. Signed-off-by: Annaliese McDermond Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/tlv320aic32x4.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/soc/codecs/tlv320aic32x4.c b/sound/soc/codecs/tlv320aic32x4.c index e694f5f04eb9..628621fc3386 100644 --- a/sound/soc/codecs/tlv320aic32x4.c +++ b/sound/soc/codecs/tlv320aic32x4.c @@ -462,6 +462,8 @@ static const struct snd_soc_dapm_widget aic32x4_dapm_widgets[] = { SND_SOC_DAPM_INPUT("IN2_R"), SND_SOC_DAPM_INPUT("IN3_L"), SND_SOC_DAPM_INPUT("IN3_R"), + SND_SOC_DAPM_INPUT("CM_L"), + SND_SOC_DAPM_INPUT("CM_R"), }; static const struct snd_soc_dapm_route aic32x4_dapm_routes[] = { -- 2.19.1