Turn a panic into a printf so IFM_ETH_MASTER on !IFM_1000_T is complained

about but otherwise ignored. When allowing the master to be set manually via
ifconfig(8) by adding the former to IFM_SUBTYPE_ETHERNET_OPTION_DESCRIPTIONS
(as it should be) it seems to be unfavorable that a machine can be made to
panic with a simple ifconfig(8) invocation.
This commit is contained in:
Marius Strobl 2010-10-31 22:59:49 +00:00
parent ad6b3047a4
commit e598f12273

View File

@ -131,7 +131,7 @@ mii_phy_setmedia(struct mii_softc *sc)
break;
default:
panic("mii_phy_setmedia: MASTER on wrong media");
printf("mii_phy_setmedia: MASTER on wrong media\n");
}
}