dmaengine: ste_dma40_ll: Replace meaningless register set with comment
authorLee Jones <lee.jones@linaro.org>
Wed, 15 May 2013 09:51:58 +0000 (10:51 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 4 Jun 2013 09:12:10 +0000 (11:12 +0200)
Unsure of the author's intentions, rather than just removing the nop,
we're replacing it with a comment containing the possible intention
of the statement OR:ing with 0.

Cc: Dan Williams <djbw@fb.com>
Cc: Per Forlin <per.forlin@stericsson.com>
Cc: Rabin Vincent <rabin@rab.in>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/dma/ste_dma40_ll.c

index a035dfeab6cbe4ac8c094a35c978c60bd276ec38..27b818dee7c7f85b5aa730d4db81b9fa4f231782 100644 (file)
@@ -182,8 +182,10 @@ static int d40_phy_fill_lli(struct d40_phy_lli *lli,
        else
                lli->reg_cfg &= ~BIT(D40_SREG_CFG_TIM_POS);
 
-       /* Post link */
-       lli->reg_lnk |= 0 << D40_SREG_LNK_PHY_PRE_POS;
+       /*
+        * Post link - D40_SREG_LNK_PHY_PRE_POS = 0
+        * Relink happens after transfer completion.
+        */
 
        return 0;
 }