]> Git Repo - linux.git/commitdiff
Staging: et131x: Properly disable FC in txmac.
authorNick Bowler <[email protected]>
Wed, 10 Mar 2010 05:10:46 +0000 (00:10 -0500)
committerLinus Torvalds <[email protected]>
Mon, 29 Mar 2010 15:51:36 +0000 (08:51 -0700)
FC disable is bit 3 of the txmac ctl register, but commit 6720949d5562
("Staging: et131x: Kil the txmac type") accidentally changed the code to
set bit 2 instead.

Signed-off-by: Nick Bowler <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/staging/et131x/et1310_mac.c

index a292b1edc41435886ceecc013db7754d67fe6f01..737a9f5401d1be0ade322d3e198bb6ef2b0f1a38 100644 (file)
@@ -226,7 +226,7 @@ void ConfigMACRegs2(struct et131x_adapter *etdev)
        }
 
        /* Enable TXMAC */
-       ctl |= 0x05;    /* TX mac enable, FC disable */
+       ctl |= 0x09;    /* TX mac enable, FC disable */
        writel(ctl, &etdev->regs->txmac.ctl);
 
        /* Ready to start the RXDMA/TXDMA engine */
This page took 0.055259 seconds and 4 git commands to generate.