| 301 | DRIVER_MODULE(timer_mv, simplebus, mv_timer_driver, mv_timer_devclass, 0, 0); |
| 302 | |
| 303 | static unsigned |
| 304 | mv_timer_get_timecount(struct timecounter *tc) |
| 305 | { |
| 306 | |
| 307 | return (INITIAL_TIMECOUNTER - mv_get_timer(1)); |
| 308 | } |
| 309 | |
| 310 | static void |
| 311 | mv_delay(int usec, void* arg) |
nothing calls this directly
no test coverage detected