| 277 | } |
| 278 | |
| 279 | static void |
| 280 | rtcout_region(int reg, const void *buf, int len) |
| 281 | { |
| 282 | const u_char *ptr = buf; |
| 283 | |
| 284 | while (len-- > 0) |
| 285 | writertc(reg++, *ptr++); |
| 286 | } |
| 287 | |
| 288 | static bool |
| 289 | atrtc_check_cmos_access(bool is_read, ACPI_PHYSICAL_ADDRESS addr, UINT32 len) |
no test coverage detected