diff options
-rw-r--r-- | sys/dev/fxp/if_fxp.c | 8 | ||||
-rw-r--r-- | sys/pci/if_fxp.c | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c index 7dd62f5..7873f3f 100644 --- a/sys/dev/fxp/if_fxp.c +++ b/sys/dev/fxp/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); 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); |