Re: [PATCH 2/2] mmc: renesas_sdhi_internal_dmac: fix comment typo

2018-08-21 Thread Simon Horman
On Fri, Aug 17, 2018 at 11:20:23PM +0300, Sergei Shtylyov wrote:
> Fix the typo in the comment to #define DTRAN_MODE_CH_NUM_CH1.
> 
> Signed-off-by: Sergei Shtylyov 

Reviewed-by: Simon Horman 



Re: [PATCH 2/2] mmc: renesas_sdhi_internal_dmac: fix comment typo

2018-08-20 Thread Wolfram Sang
On Fri, Aug 17, 2018 at 11:20:23PM +0300, Sergei Shtylyov wrote:
> Fix the typo in the comment to #define DTRAN_MODE_CH_NUM_CH1.
> 
> Signed-off-by: Sergei Shtylyov 

Reviewed-by: Wolfram Sang 

...but I really think those two patches should be squashed. One patch
per typo is too fine grained IMO.



signature.asc
Description: PGP signature


[PATCH 2/2] mmc: renesas_sdhi_internal_dmac: fix comment typo

2018-08-17 Thread Sergei Shtylyov
Fix the typo in the comment to #define DTRAN_MODE_CH_NUM_CH1.

Signed-off-by: Sergei Shtylyov 

---
 drivers/mmc/host/renesas_sdhi_internal_dmac.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: mmc/drivers/mmc/host/renesas_sdhi_internal_dmac.c
===
--- mmc.orig/drivers/mmc/host/renesas_sdhi_internal_dmac.c
+++ mmc/drivers/mmc/host/renesas_sdhi_internal_dmac.c
@@ -35,7 +35,7 @@
 
 /* DM_CM_DTRAN_MODE */
 #define DTRAN_MODE_CH_NUM_CH0  0   /* "downstream" = for write commands */
-#define DTRAN_MODE_CH_NUM_CH1  BIT(16) /* "uptream" = for read commands */
+#define DTRAN_MODE_CH_NUM_CH1  BIT(16) /* "upstream" = for read commands */
 #define DTRAN_MODE_BUS_WIDTH   (BIT(5) | BIT(4))
 #define DTRAN_MODE_ADDR_MODE   BIT(0)  /* 1 = Increment address */