diff options
author | Ian Moffett <ian@osmora.org> | 2025-02-21 13:42:39 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-02-21 13:42:39 -0500 |
commit | 6ceef43179c70852f001f1205ff92ebba4d0d4d7 (patch) | |
tree | 7b5741067bfd89a78750fa05456bd95274317543 /sys/dev/acpi | |
parent | d20d25df529f6e8949fd12afe281dea65b22f17f (diff) | |
parent | e3099277531b7b1be0aa6656a3eab3960ab6ede0 (diff) |
Merge branch 'expt'main
Hyra v1.4
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpi_init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/acpi/acpi_init.c b/sys/dev/acpi/acpi_init.c index f3de87d..bc8be77 100644 --- a/sys/dev/acpi/acpi_init.c +++ b/sys/dev/acpi/acpi_init.c @@ -54,7 +54,7 @@ acpi_init_hpet(void) { #if defined(__x86_64__) if (hpet_init() != 0) { - panic("Could not init HPET\n"); + panic("could not init HPET\n"); } #endif } @@ -107,14 +107,14 @@ acpi_init(void) /* Fetch the root SDT */ if (rsdp->revision >= 2) { root_sdt = PHYS_TO_VIRT(rsdp->xsdt_addr); - pr_trace("Using XSDT as root SDT\n"); + pr_trace("using XSDT as root SDT\n"); } else { root_sdt = PHYS_TO_VIRT(rsdp->rsdt_addr); - pr_trace("Using RSDT as root SDT\n"); + pr_trace("using RSDT as root SDT\n"); } if (acpi_checksum(&root_sdt->hdr) != 0) { - panic("Root SDT checksum is invalid!\n"); + panic("root SDT checksum is invalid!\n"); } root_sdt_entries = (root_sdt->hdr.length - sizeof(root_sdt->hdr)) / 4; |