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=-8.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,T_DKIMWL_WL_HIGH,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 4D7DFC04AB1 for ; Thu, 9 May 2019 18:50:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 13113217F5 for ; Thu, 9 May 2019 18:50:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1557427802; bh=sluI6ywh67Hf4Em0DA1/OQqFn2niaEOSF97FgzeYugY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=AbJN5aznjmqrxLYEpQk63aiagch1pmWxR/efGlSI1dvYrt5guuP4W/xRezIESWjNO 9oSGvPbgeWRtYpqQ5CwozCIILb2IU/u+PI2vfk5o5r4YCcSuhbf64b9Dq6H9/TFxVf Ui2GZF4Z/emHoefDp75aFwQliPKgCMuw2+NLVnQ4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727975AbfEISuB (ORCPT ); Thu, 9 May 2019 14:50:01 -0400 Received: from mail.kernel.org ([198.145.29.99]:43412 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726900AbfEISt6 (ORCPT ); Thu, 9 May 2019 14:49:58 -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 A6865217F5; Thu, 9 May 2019 18:49:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1557427798; bh=sluI6ywh67Hf4Em0DA1/OQqFn2niaEOSF97FgzeYugY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=px41kV4nozqm+atIWIvpkPaQzEU8kUKeYCrCw++VYXr6fkWX8VvM+bTlTivclzB0Q A778X5UQCAGYDZtvFQsI/ukXj4MS7NFxN1trswwjOeev0uU3IfQTZ8CUCM7HxCPD87 3tbosPhdBTxUk7LJ/HrM3Gy781ZXkjx3acbxXmbA= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Tzung-Bi Shih , Pierre-Louis Bossart , Mark Brown , Sasha Levin Subject: [PATCH 4.19 44/66] ASoC: Intel: kbl: fix wrong number of channels Date: Thu, 9 May 2019 20:42:19 +0200 Message-Id: <20190509181306.500387669@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190509181301.719249738@linuxfoundation.org> References: <20190509181301.719249738@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org [ Upstream commit d6ba3f815bc5f3c4249d15c8bc5fbb012651b4a4 ] Fix wrong setting on number of channels. The context wants to set constraint to 2 channels instead of 4. Signed-off-by: Tzung-Bi Shih Acked-by: Pierre-Louis Bossart Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c b/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c index a892b37eab7c9..b8a03f58ac8cc 100644 --- a/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c +++ b/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c @@ -406,7 +406,7 @@ static const struct snd_pcm_hw_constraint_list constraints_dmic_channels = { }; static const unsigned int dmic_2ch[] = { - 4, + 2, }; static const struct snd_pcm_hw_constraint_list constraints_dmic_2ch = { -- 2.20.1