| 209 | }; |
| 210 | |
| 211 | static int |
| 212 | rtc_start(struct eventtimer *et, sbintime_t first, sbintime_t period) |
| 213 | { |
| 214 | |
| 215 | atrtc_rate(max(fls(period + (period >> 1)) - 17, 1)); |
| 216 | atrtc_enable_intr(); |
| 217 | return (0); |
| 218 | } |
| 219 | |
| 220 | static int |
| 221 | rtc_stop(struct eventtimer *et) |
nothing calls this directly
no test coverage detected