Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9c52fab2f187636b39afb0dcf562872ed42ab608
Commit:     9c52fab2f187636b39afb0dcf562872ed42ab608
Parent:     13f09b95a82c46ed608d057b22e0dd18ebfff22a
Author:     Al Viro <[EMAIL PROTECTED]>
AuthorDate: Fri Feb 1 07:05:44 2008 +0000
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 20:54:03 2008 +1100

    Fix dl2k constants
    
    The MSSR constants didn't match the reality - bitfield declarations used
    to be correct (1000BT_FD - bit 11, 1000BT_HD - bit 10), but enum had
    them the other way round.  Went unnoticed until the switch from the
    bitfields use to the explicit arithmetics and I hadn't caught that one
    when verifying correctness of change...
    
    Signed-off-by: Al Viro <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/net/dl2k.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/dl2k.h b/drivers/net/dl2k.h
index d66c605..266ec87 100644
--- a/drivers/net/dl2k.h
+++ b/drivers/net/dl2k.h
@@ -388,8 +388,8 @@ enum _mii_mssr {
        MII_MSSR_CFG_RES = 0x4000,
        MII_MSSR_LOCAL_RCV_STATUS = 0x2000,
        MII_MSSR_REMOTE_RCVR = 0x1000,
-       MII_MSSR_LP_1000BT_HD = 0x0800,
-       MII_MSSR_LP_1000BT_FD = 0x0400,
+       MII_MSSR_LP_1000BT_FD = 0x0800,
+       MII_MSSR_LP_1000BT_HD = 0x0400,
        MII_MSSR_IDLE_ERR_COUNT = 0x00ff,
 };
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to