mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 16:46:23 +08:00
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 <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
13f09b95a8
commit
9c52fab2f1
@ -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,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user