| 220 | } |
| 221 | |
| 222 | static int |
| 223 | tmx86_status_sysctl(SYSCTL_HANDLER_ARGS) |
| 224 | { |
| 225 | u_int val; |
| 226 | int error; |
| 227 | |
| 228 | tmx86_get_longrun_status(&crusoe_frequency, |
| 229 | &crusoe_voltage, &crusoe_percentage); |
| 230 | val = *(u_int *)oidp->oid_arg1; |
| 231 | error = sysctl_handle_int(oidp, &val, 0, req); |
| 232 | return (error); |
| 233 | } |
| 234 | |
| 235 | static int |
| 236 | tmx86_longrun_profile_sysctl(SYSCTL_HANDLER_ARGS) |
nothing calls this directly
no test coverage detected