Fix bge at 10Mbit. The defines for 10-Half and 10-Full were swapped.

Shamed into fixing by:	John Cagle <john.cagle@hp.com>
This commit is contained in:
Paul Saab 2003-06-17 15:02:28 +00:00
parent 2a4ad25895
commit fe5c322931
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116488

View file

@ -224,8 +224,8 @@
#define BRGPHY_RES_100FD 0x0500 /* 100baseT full duplex */
#define BRGPHY_RES_100T4 0x0400 /* 100baseT4 */
#define BRGPHY_RES_100HD 0x0300 /* 100baseT half duplex */
#define BRGPHY_RES_10HD 0x0200 /* 10baseT full duplex */
#define BRGPHY_RES_10FD 0x0100 /* 10baseT half duplex */
#define BRGPHY_RES_10FD 0x0200 /* 10baseT full duplex */
#define BRGPHY_RES_10HD 0x0100 /* 10baseT half duplex */
#define BRGPHY_MII_ISR 0x1A /* interrupt status */
#define BRGPHY_ISR_PSERR 0x4000 /* Pair swap error */