From patchwork Wed May 10 09:25:27 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 9719601 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 5BD8E60236 for ; Wed, 10 May 2017 09:26:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 507EA28174 for ; Wed, 10 May 2017 09:26:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 455E128576; Wed, 10 May 2017 09:26:01 +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 00C0328174 for ; Wed, 10 May 2017 09:26:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752306AbdEJJ0A (ORCPT ); Wed, 10 May 2017 05:26:00 -0400 Received: from kirsty.vergenet.net ([202.4.237.240]:54135 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752294AbdEJJZ7 (ORCPT ); Wed, 10 May 2017 05:25:59 -0400 Received: from penelope.horms.nl (unknown [217.111.208.18]) by kirsty.vergenet.net (Postfix) with ESMTPA id E568B25BE7A; Wed, 10 May 2017 19:25:50 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=verge.net.au; s=mail; t=1494408351; bh=7WUfgCX2uJr5FXYvmBcEmddMlEawAxKgDWwshUdu9v4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Q71qA8icbLWXmTs1AQq1yFFIjELMkHnbAb/DsWesQZcYjeKlyDrWYaPtCdQcjPY8b RDOhIyXuXzJ6XOgrDRgOZULN4UX9kP7MM85lZ8YEitOAeaIOrUjSYzaIeANwG/R8qQ wIbCHR2sCIuz58ncodODC850V8CnZ+rhy1n3et+Q= Received: by penelope.horms.nl (Postfix, from userid 7100) id 012DBE2045C; Wed, 10 May 2017 11:25:47 +0200 (CEST) From: Simon Horman To: Wolfram Sang , Ulf Hansson Cc: Magnus Damm , linux-mmc@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Arnd Bergmann , Simon Horman Subject: [PATCH v2 3/6] mmc: tmio: rename tmio_mmc_{pio => core}.c Date: Wed, 10 May 2017 11:25:27 +0200 Message-Id: <1494408330-28161-4-git-send-email-horms+renesas@verge.net.au> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1494408330-28161-1-git-send-email-horms+renesas@verge.net.au> References: <1494408330-28161-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 tmio_mmc_pio.c to tmio_mmc_core.c to more accurately reflect its function: to provide core code for the tmio-mmc and sh-mobole-sdhi drivers. Signed-off-by: Simon Horman --- drivers/mmc/host/Makefile | 1 - drivers/mmc/host/{tmio_mmc_pio.c => tmio_mmc_core.c} | 0 2 files changed, 1 deletion(-) rename drivers/mmc/host/{tmio_mmc_pio.c => tmio_mmc_core.c} (100%) diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile index f11b3d4b121d..f9baa943b470 100644 --- a/drivers/mmc/host/Makefile +++ b/drivers/mmc/host/Makefile @@ -36,7 +36,6 @@ obj-$(CONFIG_MMC_S3C) += s3cmci.o obj-$(CONFIG_MMC_SDRICOH_CS) += sdricoh_cs.o 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) += sh_mobile_sdhi.o tmio_mmc_dma.o obj-$(CONFIG_MMC_CB710) += cb710-mmc.o obj-$(CONFIG_MMC_VIA_SDMMC) += via-sdmmc.o diff --git a/drivers/mmc/host/tmio_mmc_pio.c b/drivers/mmc/host/tmio_mmc_core.c similarity index 100% rename from drivers/mmc/host/tmio_mmc_pio.c rename to drivers/mmc/host/tmio_mmc_core.c