[GIT PULL] MMC fixes for 2.6.27-rc4

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Pierre Ossman
Date: Sunday, August 17, 2008 - 12:51 pm

Linus, please pull from

        git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc.git for-li=
nus

to receive the following updates:

 drivers/mmc/host/s3cmci.c     |   17 ++++++++++-------
 drivers/mmc/host/sdricoh_cs.c |    1 -
 2 files changed, 10 insertions(+), 8 deletions(-)

Ben Dooks (2):
      s3cmci: fix sparse errors from non-exported functions
      s3cmci: attach get_cd host ops

Huang Weiyi (1):
      sdricoh_cs: removed unused #include <version.h>

diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c
index 7c994e1..ae16d84 100644
--- a/drivers/mmc/host/s3cmci.c
+++ b/drivers/mmc/host/s3cmci.c
@@ -595,8 +595,9 @@ static irqreturn_t s3cmci_irq_cd(int irq, void *dev_id)
 	return IRQ_HANDLED;
 }
=20
-void s3cmci_dma_done_callback(struct s3c2410_dma_chan *dma_ch, void *buf_i=
d,
-			      int size, enum s3c2410_dma_buffresult result)
+static void s3cmci_dma_done_callback(struct s3c2410_dma_chan *dma_ch,
+				     void *buf_id, int size,
+				     enum s3c2410_dma_buffresult result)
 {
 	struct s3cmci_host *host =3D buf_id;
 	unsigned long iflags;
@@ -740,8 +741,8 @@ request_done:
 	mmc_request_done(host->mmc, mrq);
 }
=20
-
-void s3cmci_dma_setup(struct s3cmci_host *host, enum s3c2410_dmasrc source)
+static void s3cmci_dma_setup(struct s3cmci_host *host,
+			     enum s3c2410_dmasrc source)
 {
 	static enum s3c2410_dmasrc last_source =3D -1;
 	static int setup_ok;
@@ -1003,8 +1004,9 @@ static void s3cmci_send_request(struct mmc_host *mmc)
 	enable_irq(host->irq);
 }
=20
-static int s3cmci_card_present(struct s3cmci_host *host)
+static int s3cmci_card_present(struct mmc_host *mmc)
 {
+	struct s3cmci_host *host =3D mmc_priv(mmc);
 	struct s3c24xx_mci_pdata *pdata =3D host->pdata;
 	int ret;
=20
@@ -1023,7 +1025,7 @@ static void s3cmci_request(struct mmc_host *mmc, stru=
ct mmc_request *mrq)
 	host->cmd_is_stop =3D 0;
 	host->mrq =3D mrq;
=20
-	if (s3cmci_card_present(host) =3D=3D 0) {
+	if (s3cmci_card_present(mmc) =3D=3D 0) {
 		dbg(host, dbg_err, "%s: no medium present\n", __func__);
 		host->mrq->cmd->error =3D -ENOMEDIUM;
 		mmc_request_done(mmc, mrq);
@@ -1138,6 +1140,7 @@ static struct mmc_host_ops s3cmci_ops =3D {
 	.request	=3D s3cmci_request,
 	.set_ios	=3D s3cmci_set_ios,
 	.get_ro		=3D s3cmci_get_ro,
+	.get_cd		=3D s3cmci_card_present,
 };
=20
 static struct s3c24xx_mci_pdata s3cmci_def_pdata =3D {
@@ -1206,7 +1209,7 @@ static int __devinit s3cmci_probe(struct platform_dev=
ice *pdev, int is2440)
 	}
=20
 	host->base =3D ioremap(host->mem->start, RESSIZE(host->mem));
-	if (host->base =3D=3D 0) {
+	if (!host->base) {
 		dev_err(&pdev->dev, "failed to ioremap() io memory region.\n");
 		ret =3D -EINVAL;
 		goto probe_free_mem_region;
diff --git a/drivers/mmc/host/sdricoh_cs.c b/drivers/mmc/host/sdricoh_cs.c
index f99e9f7..1df44d9 100644
--- a/drivers/mmc/host/sdricoh_cs.c
+++ b/drivers/mmc/host/sdricoh_cs.c
@@ -29,7 +29,6 @@
 #include <linux/pci.h>
 #include <linux/ioport.h>
 #include <linux/scatterlist.h>
-#include <linux/version.h>
=20
 #include <pcmcia/cs_types.h>
 #include <pcmcia/cs.h>



--=20
     -- Pierre Ossman

  Linux kernel, MMC maintainer        http://www.kernel.org
  rdesktop, core developer          http://www.rdesktop.org

  WARNING: This correspondence is being monitored by the
  Swedish government. Make sure your server uses encryption
  for SMTP traffic and consider using PGP for end-to-end
  encryption.
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[GIT PULL] MMC fixes for 2.6.27-rc4, Pierre Ossman, (Sun Aug 17, 12:51 pm)