CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2024/08/31 10:23:09
Modified files:
sys/dev/ic : dc.c fxp.c rtl81x9.c xl.c
sys/dev/pci : if_alc.c if_ale.c if_bce.c if_bge.c if_em.c
if_ix.c if_lii.c if_msk.c if_nfe.c if_re_pci.c
if_rge.c if_se.c if_sis.c if_sk.c if_vr.c
Log message:
net drivers may have mii children, but mii layer has no _activate
functions. similar operations are done via driver xx_stop/init functions
calling mii_ subfunctions directly at the right moments in time, and
are not anticipated to ever need the activate mechanism. so for now,
delete all the config_activate_children() here
ok kettenis