Added support for the Seeq 80c24 PHY; does nothing except disable the

unsupported warning message for it.
This commit is contained in:
David Greenman 1997-07-25 23:41:12 +00:00
parent f7218f9f22
commit dd0ebb7f08
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27687
2 changed files with 14 additions and 2 deletions

View File

@ -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);

View File

@ -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);