Free event timer hardware. */
| 227 | |
| 228 | /* Free event timer hardware. */ |
| 229 | int |
| 230 | et_free(struct eventtimer *et) |
| 231 | { |
| 232 | |
| 233 | if (!et->et_active) |
| 234 | return (ENXIO); |
| 235 | |
| 236 | et->et_active = 0; |
| 237 | return (0); |
| 238 | } |
| 239 | |
| 240 | /* Report list of supported event timer hardware via sysctl. */ |
| 241 | static int |
no outgoing calls
no test coverage detected