| 537 | } |
| 538 | |
| 539 | static int |
| 540 | mv_timer_stop(struct eventtimer *et) |
| 541 | { |
| 542 | uint32_t val; |
| 543 | |
| 544 | val = mv_get_timer_control(); |
| 545 | val &= ~(CPU_TIMER0_EN | CPU_TIMER0_AUTO); |
| 546 | mv_set_timer_control(val); |
| 547 | return (0); |
| 548 | } |
| 549 | |
| 550 | static void |
| 551 | mv_setup_timers(void) |
nothing calls this directly
no test coverage detected