From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaehoon Chung Subject: [PATCH 0/4] mmc: sdhci-s3c: use the sdhci-pltfm.c and move the header file Date: Tue, 14 Feb 2012 14:03:05 +0900 Message-ID: <4F39EB09.3080702@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Sender: linux-samsung-soc-owner@vger.kernel.org To: linux-mmc Cc: linux-samsung-soc@vger.kernel.org, Chris Ball , Kyungmin Park , 'kgene kim' List-Id: linux-mmc@vger.kernel.org This patchset is the purpose for using sdhci-pltfm.c and removing the arch dependency. The sdhci-s3c has too heavy arch dependency. For example, if work for sdhci-s3c.c at mmc-tree, sometime need to change sdhci.h for Samsung-Soc. But now we need to work at both mmc-next tree and Samsung-SoC tree. I think this is very inefficient and can conflict to merge. So remained at least dependency and moved the header file to mmc folder. And sdhci-s3c changed to use the sdhci-pltfm.c. There is no reason that didn't use the sdhci-pltfm.c. If we use the sdhci-pltfm.c,we can easily maintain the common part. In future, i will work more removing the arch dependency. This patchset based on mmc-next tree. Jaehoon Chung (4): mmc: sdhci-s3c: use the sdhci-pltfm for Samsung-SoC ARM: SAMSUNG: move the header file to driver directory mmc: sdhci-s3c: use the sdhci-s3c.h instead of regs-sdhci.h ARM: SAMSUNG: move the mmc platdata header file to linux/mmc/ arch/arm/mach-exynos/setup-sdhci-gpio.c | 1 - arch/arm/mach-s5pc100/setup-sdhci-gpio.c | 1 - arch/arm/mach-s5pv210/setup-sdhci-gpio.c | 1 - arch/arm/plat-samsung/include/plat/regs-sdhci.h | 87 --------- arch/arm/plat-samsung/include/plat/sdhci.h | 59 +------ drivers/mmc/host/sdhci-s3c.c | 230 ++++++++--------------- drivers/mmc/host/sdhci-s3c.h | 89 +++++++++ include/linux/mmc/sdhci-s3c.h | 84 ++++++++ 8 files changed, 250 insertions(+), 302 deletions(-) delete mode 100644 arch/arm/plat-samsung/include/plat/regs-sdhci.h create mode 100644 drivers/mmc/host/sdhci-s3c.h create mode 100644 include/linux/mmc/sdhci-s3c.h