| 490 | } |
| 491 | |
| 492 | static void |
| 493 | emac_init(void *xcs) |
| 494 | { |
| 495 | struct emac_softc *sc; |
| 496 | |
| 497 | sc = (struct emac_softc *)xcs; |
| 498 | EMAC_LOCK(sc); |
| 499 | emac_init_locked(sc); |
| 500 | EMAC_UNLOCK(sc); |
| 501 | } |
| 502 | |
| 503 | static void |
| 504 | emac_init_locked(struct emac_softc *sc) |
nothing calls this directly
no test coverage detected