From patchwork Thu Feb 5 20:12:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Strasser X-Patchwork-Id: 5786601 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 31C8D9F302 for ; Thu, 5 Feb 2015 20:12:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7ED28201FA for ; Thu, 5 Feb 2015 20:12:58 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 8FC40202AE for ; Thu, 5 Feb 2015 20:12:57 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 3705B2650F7; Thu, 5 Feb 2015 21:12:51 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,NO_DNS_FOR_FROM, UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 57CE1265054; Thu, 5 Feb 2015 21:12:42 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 8512226508C; Thu, 5 Feb 2015 21:12:41 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by alsa0.perex.cz (Postfix) with ESMTP id 2D0FE260558 for ; Thu, 5 Feb 2015 21:12:35 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 05 Feb 2015 12:12:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,525,1418112000"; d="scan'208";a="647964914" Received: from h87m.jf.intel.com ([10.7.197.214]) by orsmga001.jf.intel.com with ESMTP; 05 Feb 2015 12:12:33 -0800 From: Kevin Strasser To: alsa-devel@alsa-project.org Date: Thu, 5 Feb 2015 12:12:07 -0800 Message-Id: <1423167127-16029-1-git-send-email-kevin.strasser@linux.intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1423078507-30032-1-git-send-email-kevin.strasser@linux.intel.com> References: <1423078507-30032-1-git-send-email-kevin.strasser@linux.intel.com> Cc: Vinod Koul , Mengdong Lin , Liam Girdwood , linux-kernel@vger.kernel.org, Yang Fang , Mark Brown Subject: [alsa-devel] [PATCH v2] ASoC: Intel: fix sst firmware path for cht-bsw-rt5672 X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 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-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP All sst firmware is provided under the intel directory of the linux-firmware tree. By default this directory structure is kept when installing on a target system. Change the path to expect a default linux-firmware installation. Signed-off-by: Kevin Strasser --- sound/soc/intel/sst/sst_acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/intel/sst/sst_acpi.c b/sound/soc/intel/sst/sst_acpi.c index 2ac72eb..b336013 100644 --- a/sound/soc/intel/sst/sst_acpi.c +++ b/sound/soc/intel/sst/sst_acpi.c @@ -350,7 +350,7 @@ static struct sst_machines sst_acpi_bytcr[] = { /* Cherryview-based platforms: CherryTrail and Braswell */ static struct sst_machines sst_acpi_chv[] = { - {"10EC5670", "cht-bsw", "cht-bsw-rt5672", NULL, "fw_sst_22a8.bin", + {"10EC5670", "cht-bsw", "cht-bsw-rt5672", NULL, "intel/fw_sst_22a8.bin", &chv_platform_data }, {}, };