OSDN Git Service

mmc: renesas_sdhi: Fix typo's
authorLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Fri, 24 Jun 2022 18:14:38 +0000 (19:14 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 12 Jul 2022 10:27:08 +0000 (12:27 +0200)
Fix typo's,
* difference -> different
* alignment -> aligned

While at it updated the comment to make it clear that Renesas SDHI DMAC
needs buffers to be 128-byte aligned.

Reported-by: Pavel Machek <pavel@denx.de>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20220624181438.4355-3-prabhakar.mahadev-lad.rj@bp.renesas.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/renesas_sdhi_internal_dmac.c

index 8f2e661..0ccdbe3 100644 (file)
@@ -322,7 +322,7 @@ renesas_sdhi_internal_dmac_dataend_dma(struct tmio_mmc_host *host)
 }
 
 /*
- * renesas_sdhi_internal_dmac_map() will be called with two difference
+ * renesas_sdhi_internal_dmac_map() will be called with two different
  * sg pointers in two mmc_data by .pre_req(), but tmio host can have a single
  * sg_ptr only. So, renesas_sdhi_internal_dmac_{un}map() should use a sg
  * pointer in a mmc_data instead of host->sg_ptr.
@@ -356,7 +356,7 @@ renesas_sdhi_internal_dmac_map(struct tmio_mmc_host *host,
 
        data->host_cookie = cookie;
 
-       /* This DMAC cannot handle if buffer is not 128-bytes alignment */
+       /* This DMAC needs buffers to be 128-byte aligned */
        if (!IS_ALIGNED(sg_dma_address(data->sg), 128)) {
                renesas_sdhi_internal_dmac_unmap(host, data, cookie);
                return false;