diff options
author | David Miller <davem@davemloft.net> | 2007-06-06 22:44:14 -0700 |
---|---|---|
committer | Chris Wright <chrisw@sous-sol.org> | 2007-06-11 11:36:52 -0700 |
commit | d4e9e959836ba3e5e754f04424ee5feb6bc16650 (patch) | |
tree | 128fa8c509276a6e25a524194b3324ee7324e787 | |
parent | b407fdbabb6c630660e1e9c9c2d212a03b746775 (diff) | |
download | linux-stable-d4e9e959836ba3e5e754f04424ee5feb6bc16650.tar.gz linux-stable-d4e9e959836ba3e5e754f04424ee5feb6bc16650.tar.bz2 linux-stable-d4e9e959836ba3e5e754f04424ee5feb6bc16650.zip |
[PATCH] NET: Fix BMSR_100{HALF,FULL}2 defines in linux/mii.h
Noticed by Matvejchikov Ilya.
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | include/linux/mii.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mii.h b/include/linux/mii.h index beddc6d3b0f6..151b7e0182c7 100644 --- a/include/linux/mii.h +++ b/include/linux/mii.h @@ -56,8 +56,8 @@ #define BMSR_ANEGCOMPLETE 0x0020 /* Auto-negotiation complete */ #define BMSR_RESV 0x00c0 /* Unused... */ #define BMSR_ESTATEN 0x0100 /* Extended Status in R15 */ -#define BMSR_100FULL2 0x0200 /* Can do 100BASE-T2 HDX */ -#define BMSR_100HALF2 0x0400 /* Can do 100BASE-T2 FDX */ +#define BMSR_100HALF2 0x0200 /* Can do 100BASE-T2 HDX */ +#define BMSR_100FULL2 0x0400 /* Can do 100BASE-T2 FDX */ #define BMSR_10HALF 0x0800 /* Can do 10mbps, half-duplex */ #define BMSR_10FULL 0x1000 /* Can do 10mbps, full-duplex */ #define BMSR_100HALF 0x2000 /* Can do 100mbps, half-duplex */ |