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.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 C6297C04E53 for ; Wed, 15 May 2019 12:19:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8E3D2206BF for ; Wed, 15 May 2019 12:19:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1557922798; bh=sWeYgxjONtNO9TyWpgXckBg2wtzesN461NHgPLQ7ZGw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=1Kqc3c9UzAz9+0s7RFsDnZEZZ5Rt5O8mRZbG30IiaMxuI9K6eVwC8CGOimuywhxJp bdVId6woXMCSNnROEvIxE9J7bk+wtcbef/d9h8FmafmRmZeO80HA8A8zYWORkIB3nf u91kOHi2a99ix3ewlT7MURpUeX+HxJ0EuivRT294= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727355AbfEOLAK (ORCPT ); Wed, 15 May 2019 07:00:10 -0400 Received: from mail.kernel.org ([198.145.29.99]:56892 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726829AbfEOLAJ (ORCPT ); Wed, 15 May 2019 07:00:09 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9EBD120881; Wed, 15 May 2019 11:00:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1557918009; bh=sWeYgxjONtNO9TyWpgXckBg2wtzesN461NHgPLQ7ZGw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Nxc3mX7HwFLuCVlWZRXJLViW1hARcSuNnj3XeIDILOQwDoQHWoiWMVOu5eIgjxPe4 gJFu4Z/KODflOvdW1rLyUulI7T8gLsiPQTTQv52TldwZ4eUhjlSAM11O+9vBB31lSt eoKAhZlzwkbvG0IGqt2jqkZNDMbK/rpz+iuhFhoM= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Annaliese McDermond , Mark Brown , Sasha Levin Subject: [PATCH 3.18 55/86] ASoC: tlv320aic32x4: Fix Common Pins Date: Wed, 15 May 2019 12:55:32 +0200 Message-Id: <20190515090653.202466076@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190515090642.339346723@linuxfoundation.org> References: <20190515090642.339346723@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org [ 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 6ea662db24107..fdce75d5c6753 100644 --- a/sound/soc/codecs/tlv320aic32x4.c +++ b/sound/soc/codecs/tlv320aic32x4.c @@ -234,6 +234,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.20.1