feat: kprintf now goes into dedicated pseudo-dev rather than flooding the framebuffer
[lunaix-os.git] / lunaix-os / hal / acpi / acpi.c
index 7ad3f06e1c00177947783d6b50a7ca6e91c618cf..67915fa3092b86c0ddf34d04fac1ad46d32fbf45 100644 (file)
@@ -40,16 +40,13 @@ acpi_init()
           (acpi_sdthdr_t*)((acpi_apic_t**)&(rsdt->entry))[i];
         switch (sdthdr->signature) {
             case ACPI_MADT_SIG:
-                kprintf(KINFO "MADT: %p\n", sdthdr);
                 madt_parse((acpi_madt_t*)sdthdr, ctx);
                 break;
             case ACPI_FADT_SIG:
                 // FADT just a plain structure, no need to parse.
-                kprintf(KINFO "FADT: %p\n", sdthdr);
                 ctx->fadt = *(acpi_fadt_t*)sdthdr;
                 break;
             case ACPI_MCFG_SIG:
-                kprintf(KINFO "MCFG: %p\n", sdthdr);
                 mcfg_parse(sdthdr, ctx);
                 break;
             default:
@@ -57,8 +54,6 @@ acpi_init()
         }
     }
 
-    kprintf(KINFO "ACPI: %s\n", ctx->oem_id);
-
     return 0;
 }