diff options
| author | David Greenman <dg@FreeBSD.org> | 1997-07-25 23:41:12 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1997-07-25 23:41:12 +0000 |
| commit | dd0ebb7f0885bf750046e63de672c73729c4b9dd (patch) | |
| tree | 99b38cd81845da2a3029834a7b12a2831ebeea7c | |
| parent | f7218f9f22fb71eda8ea37207e61f6ba9592cb0a (diff) | |
Notes
| -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 7dd62f510aaf..7873f3fe17f2 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 7dd62f510aaf..7873f3fe17f2 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); |
