| 603 | } |
| 604 | |
| 605 | static void |
| 606 | emac_start(struct ifnet *ifp) |
| 607 | { |
| 608 | struct emac_softc *sc; |
| 609 | |
| 610 | sc = ifp->if_softc; |
| 611 | EMAC_LOCK(sc); |
| 612 | emac_start_locked(ifp); |
| 613 | EMAC_UNLOCK(sc); |
| 614 | } |
| 615 | |
| 616 | static void |
| 617 | emac_start_locked(struct ifnet *ifp) |
nothing calls this directly
no test coverage detected