From 4c1d03b082f4972c02f5794976f4651fc5f85795 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 10 Apr 2025 23:29:33 -0400 Subject: fmt --- kernel/mboot/rsdp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'kernel/mboot') diff --git a/kernel/mboot/rsdp.c b/kernel/mboot/rsdp.c index f20d986..d90174d 100644 --- a/kernel/mboot/rsdp.c +++ b/kernel/mboot/rsdp.c @@ -25,14 +25,16 @@ void *mboot_get_rsdp(void) // acpi 2.0 tag = locate_mboot_table(MULTIBOOT_TAG_TYPE_ACPI_NEW); if (tag != NULL) { - struct multiboot_tag_new_acpi *rsdp = (struct multiboot_tag_new_acpi *)tag; + struct multiboot_tag_new_acpi *rsdp = + (struct multiboot_tag_new_acpi *)tag; return rsdp->rsdp; } // acpi 1.0 tag = locate_mboot_table(MULTIBOOT_TAG_TYPE_ACPI_OLD); if (tag != NULL) { - struct multiboot_tag_old_acpi *rsdp = (struct multiboot_tag_old_acpi *)tag; + struct multiboot_tag_old_acpi *rsdp = + (struct multiboot_tag_old_acpi *)tag; return rsdp->rsdp; } -- cgit v1.2.3-freya