aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2007-07-22 17:39:23 +0200
committerAdrian Bunk <bunk@stusta.de>2007-07-22 17:39:23 +0200
commita5028e398f04cb2230fd6461a2b0f29ce0ca934a (patch)
tree9d1b7541dc99dd9f510aee6b17ce38c4b8c4b5e9
parentde3b9c4f8bb51494e57f8f938d96cdddb0ce76d4 (diff)
[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: Adrian Bunk <bunk@stusta.de>
-rw-r--r--include/linux/mii.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mii.h b/include/linux/mii.h
index 68f5a0f392dd..57cd467b15de 100644
--- a/include/linux/mii.h
+++ b/include/linux/mii.h
@@ -57,8 +57,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 */