diff options
author | jlemon <jlemon@FreeBSD.org> | 2001-05-15 18:52:40 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2001-05-15 18:52:40 +0000 |
commit | a0eefc9e043aaecf577d8cbc39ad95a1c7195292 (patch) | |
tree | 2b38b1d20e302980a6c36eac9e5e67c134b093b3 /sys/dev/fxp | |
parent | 07867f9ae9525b0b7d04c311159e21a97c3fe97a (diff) | |
download | FreeBSD-src-a0eefc9e043aaecf577d8cbc39ad95a1c7195292.zip FreeBSD-src-a0eefc9e043aaecf577d8cbc39ad95a1c7195292.tar.gz |
Use " |= " to enable special media handling for fxp with no MII, instead
of " &= ". Also change the MII PHY device mask to check the correct bits.
Cookie to: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
Pointy hat to: me
Diffstat (limited to 'sys/dev/fxp')
-rw-r--r-- | sys/dev/fxp/if_fxp.c | 2 | ||||
-rw-r--r-- | sys/dev/fxp/if_fxpreg.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c index 9eddd16..34fef8d 100644 --- a/sys/dev/fxp/if_fxp.c +++ b/sys/dev/fxp/if_fxp.c @@ -448,7 +448,7 @@ fxp_attach(device_t dev) fxp_read_eeprom(sc, &data, 6, 1); if ((data & FXP_PHY_DEVICE_MASK) != 0 && (data & FXP_PHY_SERIAL_ONLY)) - sc->flags &= FXP_FLAG_SERIAL_MEDIA; + sc->flags |= FXP_FLAG_SERIAL_MEDIA; /* * Find out the basic controller type; we currently only diff --git a/sys/dev/fxp/if_fxpreg.h b/sys/dev/fxp/if_fxpreg.h index 9f7e686..a1c76b7 100644 --- a/sys/dev/fxp/if_fxpreg.h +++ b/sys/dev/fxp/if_fxpreg.h @@ -355,7 +355,7 @@ struct fxp_stats { /* * PHY device types */ -#define FXP_PHY_DEVICE_MASK 0x03f0 +#define FXP_PHY_DEVICE_MASK 0x3f00 #define FXP_PHY_SERIAL_ONLY 0x8000 #define FXP_PHY_NONE 0 #define FXP_PHY_82553A 1 |