From patchwork Wed Jun 15 04:01:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 9177523 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 649C7608A5 for ; Wed, 15 Jun 2016 04:02:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 54A2E28354 for ; Wed, 15 Jun 2016 04:02:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 528E22835F; Wed, 15 Jun 2016 04:02:41 +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=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0A8B22835C for ; Wed, 15 Jun 2016 04:02:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751884AbcFOECg (ORCPT ); Wed, 15 Jun 2016 00:02:36 -0400 Received: from kirsty.vergenet.net ([202.4.237.240]:47886 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751824AbcFOECf (ORCPT ); Wed, 15 Jun 2016 00:02:35 -0400 Received: from reginn.isobedori.kobe.vergenet.net (p6216-ipbfp1501kobeminato.hyogo.ocn.ne.jp [114.153.217.216]) by kirsty.vergenet.net (Postfix) with ESMTPA id B2D5725BE9A; Wed, 15 Jun 2016 14:02:23 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=verge.net.au; s=mail; t=1465963343; bh=fnWCi/vmVUPNYsWWwK7izfDgIw3WEf1/gYW2AcRmc6Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nikXbiWzS4b5PDEFIWXIPLKR7l8pSUASRx7qFHJ63n9sx9GFitssfkRZMFrJCtMTn 4D1wpsgUk7ShkAIce6ASiLJwJiHFEj73EILiargSeoqeGBq6MmDNh+2oY4c9tUg37l kkxRg9IE6kyHCakKqRufkM4REWUdgXQqCuySp1nE= Received: by reginn.isobedori.kobe.vergenet.net (Postfix, from userid 7100) id A51889407AA; Wed, 15 Jun 2016 13:02:22 +0900 (JST) From: Simon Horman To: Wolfram Sang , Ulf Hansson Cc: Magnus Damm , linux-mmc@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Yoshihiro Shimoda , Simon Horman Subject: [PATCH/RFC 3/4] mmc: renesas_sdhi: rename DMA source file as renesas_sdhi_dma.c Date: Wed, 15 Jun 2016 13:01:56 +0900 Message-Id: <1465963317-28672-4-git-send-email-horms+renesas@verge.net.au> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1465963317-28672-1-git-send-email-horms+renesas@verge.net.au> References: <1465963317-28672-1-git-send-email-horms+renesas@verge.net.au> Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Rename the source file for DMA for Renesas SDHI as a follow-up to attaching DMA code to the renesas_sdhi driver rather than the tmio_core driver. Signed-off-by: Simon Horman --- drivers/mmc/host/Makefile | 2 +- drivers/mmc/host/{tmio_mmc_dma.c => renesas_sdhi_dma.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/mmc/host/{tmio_mmc_dma.c => renesas_sdhi_dma.c} (100%) diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile index 4f7903fbef26..0ea7fb6f3d5e 100644 --- a/drivers/mmc/host/Makefile +++ b/drivers/mmc/host/Makefile @@ -38,7 +38,7 @@ obj-$(CONFIG_MMC_TMIO) += tmio_mmc.o obj-$(CONFIG_MMC_TMIO_CORE) += tmio_mmc_core.o tmio_mmc_core-y := tmio_mmc_pio.o obj-$(CONFIG_MMC_SDHI) += renesas_sdhi.o -renesas_sdhi-$(subst m,y,$(CONFIG_MMC_SDHI_DMA)) += tmio_mmc_dma.o +renesas_sdhi-$(subst m,y,$(CONFIG_MMC_SDHI_DMA)) += renesas_sdhi_dma.o obj-$(CONFIG_MMC_CB710) += cb710-mmc.o obj-$(CONFIG_MMC_VIA_SDMMC) += via-sdmmc.o obj-$(CONFIG_SDH_BFIN) += bfin_sdh.o diff --git a/drivers/mmc/host/tmio_mmc_dma.c b/drivers/mmc/host/renesas_sdhi_dma.c similarity index 100% rename from drivers/mmc/host/tmio_mmc_dma.c rename to drivers/mmc/host/renesas_sdhi_dma.c