From patchwork Fri Dec 16 07:34:17 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 9477343 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id E75EA607EE for ; Fri, 16 Dec 2016 07:37:26 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id DEB4A28662 for ; Fri, 16 Dec 2016 07:37:26 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D3335287AE; Fri, 16 Dec 2016 07:37:26 +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=-1.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9ED7A28764 for ; Fri, 16 Dec 2016 07:37:25 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id C34A526686F; Fri, 16 Dec 2016 08:37:23 +0100 (CET) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 81B89265AF3; Fri, 16 Dec 2016 08:35:02 +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 5BE8A2667F5; Fri, 16 Dec 2016 08:34:52 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by alsa0.perex.cz (Postfix) with ESMTP id 6D761265AF3 for ; Fri, 16 Dec 2016 08:34:47 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP; 15 Dec 2016 23:34:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,356,1477983600"; d="scan'208";a="798614804" Received: from vkoul-udesk7.iind.intel.com ([10.223.84.143]) by FMSMGA003.fm.intel.com with ESMTP; 15 Dec 2016 23:34:43 -0800 From: Vinod Koul To: alsa-devel@alsa-project.org Date: Fri, 16 Dec 2016 13:04:17 +0530 Message-Id: <1481873657-3092-1-git-send-email-vinod.koul@intel.com> X-Mailer: git-send-email 1.9.1 Cc: liam.r.girdwood@linux.intel.com, tiwai@suse.de, broonie@kernel.org, Vinod Koul , patches.audio@intel.com Subject: [alsa-devel] [PATCH] tinycompress: rename crec.c 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 Since the compress recorder utility is called crecord, it makes it apt to have src file named crecord.c. Reported-by: Richard Fitzgerald Signed-off-by: Vinod Koul --- src/utils/Makefile.am | 2 +- src/utils/{crec.c => crecord.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/utils/{crec.c => crecord.c} (100%) diff --git a/src/utils/Makefile.am b/src/utils/Makefile.am index 5f685e3b2ffe..1b996d430f21 100644 --- a/src/utils/Makefile.am +++ b/src/utils/Makefile.am @@ -1,7 +1,7 @@ bin_PROGRAMS = cplay crecord cplay_SOURCES = cplay.c -crecord_SOURCES = crec.c +crecord_SOURCES = crecord.c cplay_CFLAGS = -I$(top_srcdir)/include crecord_CFLAGS = -I$(top_srcdir)/include diff --git a/src/utils/crec.c b/src/utils/crecord.c similarity index 100% rename from src/utils/crec.c rename to src/utils/crecord.c