aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-08-05 10:25:40 -0400
committerJiri Kosina <jkosina@suse.cz>2012-09-01 12:52:48 -0400
commit7122bbb0d14b7a6031aeef046b45d4934cb94ba7 (patch)
tree05e3119c5425a12c8c049986f788966dc2305ad9
parentd73111c6d43f08d697a3d986fe3bd8ca796a2096 (diff)
mmc: fix comment typos
Correct spelling typo in drivers/mmc Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--drivers/mmc/core/sdio.c2
-rw-r--r--drivers/mmc/host/at91_mci.c2
-rw-r--r--drivers/mmc/host/atmel-mci.c2
-rw-r--r--drivers/mmc/host/omap_hsmmc.c2
-rw-r--r--drivers/mmc/host/sdhci-esdhc-imx.c2
-rw-r--r--drivers/mmc/host/vub300.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c
index d4619e2ec030..2273ce6b6c1a 100644
--- a/drivers/mmc/core/sdio.c
+++ b/drivers/mmc/core/sdio.c
@@ -641,7 +641,7 @@ static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr,
641 /* 641 /*
642 * If the host and card support UHS-I mode request the card 642 * If the host and card support UHS-I mode request the card
643 * to switch to 1.8V signaling level. No 1.8v signalling if 643 * to switch to 1.8V signaling level. No 1.8v signalling if
644 * UHS mode is not enabled to maintain compatibilty and some 644 * UHS mode is not enabled to maintain compatibility and some
645 * systems that claim 1.8v signalling in fact do not support 645 * systems that claim 1.8v signalling in fact do not support
646 * it. 646 * it.
647 */ 647 */
diff --git a/drivers/mmc/host/at91_mci.c b/drivers/mmc/host/at91_mci.c
index efdb81d21c44..74bed0fc23e7 100644
--- a/drivers/mmc/host/at91_mci.c
+++ b/drivers/mmc/host/at91_mci.c
@@ -356,7 +356,7 @@ static void at91_mci_handle_transmitted(struct at91mci_host *host)
356} 356}
357 357
358/* 358/*
359 * Update bytes tranfered count during a write operation 359 * Update bytes transfered count during a write operation
360 */ 360 */
361static void at91_mci_update_bytes_xfered(struct at91mci_host *host) 361static void at91_mci_update_bytes_xfered(struct at91mci_host *host)
362{ 362{
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c
index 322412cec4ee..eea9cf22c02f 100644
--- a/drivers/mmc/host/atmel-mci.c
+++ b/drivers/mmc/host/atmel-mci.c
@@ -1021,7 +1021,7 @@ static void atmci_stop_transfer(struct atmel_mci *host)
1021} 1021}
1022 1022
1023/* 1023/*
1024 * Stop data transfer because error(s) occured. 1024 * Stop data transfer because error(s) occurred.
1025 */ 1025 */
1026static void atmci_stop_transfer_pdc(struct atmel_mci *host) 1026static void atmci_stop_transfer_pdc(struct atmel_mci *host)
1027{ 1027{
diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index bc28627af66b..968453878c46 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -445,7 +445,7 @@ static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
445 OMAP_HSMMC_WRITE(host->base, SYSCTL, 445 OMAP_HSMMC_WRITE(host->base, SYSCTL,
446 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN); 446 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
447 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0) 447 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
448 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n"); 448 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
449} 449}
450 450
451static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host, 451static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c
index e23f8134591c..32f4a070551f 100644
--- a/drivers/mmc/host/sdhci-esdhc-imx.c
+++ b/drivers/mmc/host/sdhci-esdhc-imx.c
@@ -315,7 +315,7 @@ static void esdhc_writeb_le(struct sdhci_host *host, u8 val, int reg)
315 new_val = val & (SDHCI_CTRL_LED | \ 315 new_val = val & (SDHCI_CTRL_LED | \
316 SDHCI_CTRL_4BITBUS | \ 316 SDHCI_CTRL_4BITBUS | \
317 SDHCI_CTRL_D3CD); 317 SDHCI_CTRL_D3CD);
318 /* ensure the endianess */ 318 /* ensure the endianness */
319 new_val |= ESDHC_HOST_CONTROL_LE; 319 new_val |= ESDHC_HOST_CONTROL_LE;
320 /* bits 8&9 are reserved on mx25 */ 320 /* bits 8&9 are reserved on mx25 */
321 if (!is_imx25_esdhc(imx_data)) { 321 if (!is_imx25_esdhc(imx_data)) {
diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c
index 3135a1a5d75d..58eab9ac1d01 100644
--- a/drivers/mmc/host/vub300.c
+++ b/drivers/mmc/host/vub300.c
@@ -806,7 +806,7 @@ static void command_res_completed(struct urb *urb)
806 * we suspect a buggy USB host controller 806 * we suspect a buggy USB host controller
807 */ 807 */
808 } else if (!vub300->data) { 808 } else if (!vub300->data) {
809 /* this means that the command (typically CMD52) suceeded */ 809 /* this means that the command (typically CMD52) succeeded */
810 } else if (vub300->resp.common.header_type != 0x02) { 810 } else if (vub300->resp.common.header_type != 0x02) {
811 /* 811 /*
812 * this is an error response from the VUB300 chip 812 * this is an error response from the VUB300 chip