| 496 | |
| 497 | #ifdef DEV_ACPI |
| 498 | static int |
| 499 | atrtc_acpi_attach(device_t dev) |
| 500 | { |
| 501 | int ret; |
| 502 | |
| 503 | ret = atrtc_attach(dev); |
| 504 | if (ret) |
| 505 | return (ret); |
| 506 | |
| 507 | (void)atrtc_reg_acpi_cmos_handler(dev); |
| 508 | |
| 509 | return (0); |
| 510 | } |
| 511 | |
| 512 | static int |
| 513 | atrtc_acpi_detach(device_t dev) |
nothing calls this directly
no test coverage detected