diff options
author | dg <dg@FreeBSD.org> | 1997-07-25 23:41:12 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1997-07-25 23:41:12 +0000 |
commit | fff17f1bd79558e58da341567a580b382cee9d0b (patch) | |
tree | 9c8eaad9e656c0f9fbc47b411864fd3f85cb2c60 /sys/pci | |
parent | 7501e605dedeeb5666ac9d1cfb7c2a547cb0c9c8 (diff) | |
download | FreeBSD-src-fff17f1bd79558e58da341567a580b382cee9d0b.zip FreeBSD-src-fff17f1bd79558e58da341567a580b382cee9d0b.tar.gz |
Added support for the Seeq 80c24 PHY; does nothing except disable the
unsupported warning message for it.
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_fxp.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/pci/if_fxp.c b/sys/pci/if_fxp.c index 7dd62f5..7873f3f 100644 --- a/sys/pci/if_fxp.c +++ b/sys/pci/if_fxp.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_fxp.c,v 1.35 1997/06/13 22:34:52 davidg Exp $ + * $Id: if_fxp.c,v 1.36 1997/06/16 04:45:57 davidg Exp $ */ /* @@ -998,6 +998,12 @@ fxp_init(xsc) FXP_PHY_BMCR_AUTOEN)); } break; + /* + * The Seeq 80c24 doesn't have a PHY programming interface, so do + * nothing. + */ + case FXP_PHY_80C24: + break; default: printf("fxp%d: warning: unsupported PHY, type = %d, addr = %d\n", ifp->if_unit, sc->phy_primary_device, sc->phy_primary_addr); |