From patchwork Sat Mar 2 01:08:50 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pierre-Louis Bossart X-Patchwork-Id: 10836275 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 044B8139A for ; Sat, 2 Mar 2019 01:10:07 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E18012E527 for ; Sat, 2 Mar 2019 01:10:06 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id CE2542E593; Sat, 2 Mar 2019 01:10:06 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id CD7F72E527 for ; Sat, 2 Mar 2019 01:10:03 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 1764C852; Sat, 2 Mar 2019 02:09:11 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 1764C852 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1551489001; bh=+YrQMfjlj9hOEYzYw1r0HPxImc5u6dEv1lVI5TLi5q0=; h=From:To:Date:Cc:Subject:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=CRN7Gd3uuu2iZA4I52k/iVQ/YplQ1UJ617oFMmIofEuK/MKa9X35brVP/yuc6Ey8k BKApOjHbjSSpviY1j8GUMdhAbK2jx7QgCBlAVmePIxHw0/B4lNDtAZ8YfWeAKXNpIi 8bO//LnD02rJh6pAbb7dZycy9paAxj+fnK3avRrg= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id 3E278F896E0; Sat, 2 Mar 2019 02:09:10 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa1.perex.cz (Postfix, from userid 50401) id 1B586F896E0; Sat, 2 Mar 2019 02:09:08 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id D60FBF8073C for ; Sat, 2 Mar 2019 02:09:04 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz D60FBF8073C X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Mar 2019 17:09:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,430,1544515200"; d="scan'208";a="118950916" Received: from ksrubio-mobl.amr.corp.intel.com (HELO pbossart-mobl3.intel.com) ([10.254.107.57]) by orsmga007.jf.intel.com with ESMTP; 01 Mar 2019 17:09:00 -0800 From: Pierre-Louis Bossart To: alsa-devel@alsa-project.org Date: Fri, 1 Mar 2019 19:08:50 -0600 Message-Id: <20190302010853.18115-1-pierre-louis.bossart@linux.intel.com> X-Mailer: git-send-email 2.17.1 Cc: tiwai@suse.de, broonie@kernel.org, Pierre-Louis Bossart Subject: [alsa-devel] [PATCH 0/3] ASoC: core/dapm/topology: minor fixes X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" X-Virus-Scanned: ClamAV using ClamSMTP 3 small patches that have been used for a while but not contributed upstream. The first patch fixes a name mismatch when using the same machine driver on ApolloLake and GeminiLake Chromebooks. The second one fixes a minor mistake in the location of a topology pointer update, and aligns the code on the same pattern. The last one corrects yet another miss with the introduction of the new buffer/src/scheduler soc_dapm elements which were always showing as 'On' Liam Girdwood (1): ASoC: topology: Align tplg pointer increment across all kcontrols Pierre-Louis Bossart (1): ASoC: core: support driver alias names for FE topology overrides Ranjani Sridharan (1): ASoC: dapm: set power_check callback for widgets that shouldnt be always on sound/soc/soc-core.c | 7 +++++-- sound/soc/soc-dapm.c | 7 +++++++ sound/soc/soc-topology.c | 17 +++++++++-------- 3 files changed, 21 insertions(+), 10 deletions(-)