| 285 | } |
| 286 | |
| 287 | static int |
| 288 | arm_tmr_stop(struct eventtimer *et) |
| 289 | { |
| 290 | struct arm_tmr_softc *sc; |
| 291 | |
| 292 | sc = (struct arm_tmr_softc *)et->et_priv; |
| 293 | arm_tmr_disable(sc->physical); |
| 294 | |
| 295 | return (0); |
| 296 | } |
| 297 | |
| 298 | static int |
| 299 | arm_tmr_intr(void *arg) |
nothing calls this directly
no test coverage detected