From patchwork Tue Feb 18 11:43:16 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liam Girdwood X-Patchwork-Id: 3669931 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 11EE0BF13A for ; Tue, 18 Feb 2014 12:22:05 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 522BA201CD for ; Tue, 18 Feb 2014 12:22:04 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 305F7201D3 for ; Tue, 18 Feb 2014 12:22:03 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 7D6162656FB; Tue, 18 Feb 2014 13:21:57 +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, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 87B952652EE; Tue, 18 Feb 2014 12:51:54 +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 98C7E265774; Tue, 18 Feb 2014 12:51:52 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by alsa0.perex.cz (Postfix) with ESMTP id EB58E265268 for ; Tue, 18 Feb 2014 12:43:22 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP; 18 Feb 2014 03:43:21 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,501,1389772800"; d="scan'208";a="476983760" Received: from timevans-mobl.ger.corp.intel.com (HELO loki.ger.corp.intel.com) ([10.252.123.93]) by fmsmga001.fm.intel.com with ESMTP; 18 Feb 2014 03:43:19 -0800 From: Liam Girdwood To: Mark Brown Date: Tue, 18 Feb 2014 11:43:16 +0000 Message-Id: <1392723796-4773-1-git-send-email-liam.r.girdwood@linux.intel.com> X-Mailer: git-send-email 1.8.3.2 Cc: Takashi Iwai , Liam Girdwood , alsa-devel@alsa-project.org Subject: [alsa-devel] [PATCHv2] ASoC: Intel: Rename SST trace event header to be less generic. 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 The Intel audio DSP SST trace event header has been renamed from sst.h to intel-sst.h in order to avoid any confusion with any future Samoa Standard Time drivers ;) Signed-off-by: Liam Girdwood --- include/trace/events/{sst.h => intel-sst.h} | 6 +++--- sound/soc/intel/sst-dsp.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename include/trace/events/{sst.h => intel-sst.h} (94%) diff --git a/include/trace/events/sst.h b/include/trace/events/intel-sst.h similarity index 94% rename from include/trace/events/sst.h rename to include/trace/events/intel-sst.h index 1a0d6b3..76c72d3 100644 --- a/include/trace/events/sst.h +++ b/include/trace/events/intel-sst.h @@ -1,8 +1,8 @@ #undef TRACE_SYSTEM -#define TRACE_SYSTEM sst +#define TRACE_SYSTEM intel-sst -#if !defined(_TRACE_SST_H) || defined(TRACE_HEADER_MULTI_READ) -#define _TRACE_SST_H +#if !defined(_TRACE_INTEL_SST_H) || defined(TRACE_HEADER_MULTI_READ) +#define _TRACE_INTEL_SST_H #include #include diff --git a/sound/soc/intel/sst-dsp.c b/sound/soc/intel/sst-dsp.c index 1888de5..e0ad2e5 100644 --- a/sound/soc/intel/sst-dsp.c +++ b/sound/soc/intel/sst-dsp.c @@ -24,7 +24,7 @@ #include "sst-dsp-priv.h" #define CREATE_TRACE_POINTS -#include +#include /* Public API */ void sst_dsp_shim_write(struct sst_dsp *sst, u32 offset, u32 value)