| 179 | } |
| 180 | |
| 181 | void |
| 182 | clock_dbgprint_ct(device_t dev, int rw, const struct clocktime *ct) |
| 183 | { |
| 184 | |
| 185 | if (show_io & rw) { |
| 186 | clock_dbgprint_hdr(dev, rw); |
| 187 | clock_print_ct(ct, 9); |
| 188 | printf("\n"); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | void |
| 193 | clock_dbgprint_err(device_t dev, int rw, int err) |
nothing calls this directly
no test coverage detected