coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
acpi_tables.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <acpi/acpi.h>
4 
5 unsigned long acpi_fill_madt(unsigned long current)
6 {
7  /* mainboard has no ioapic */
8  return current;
9 }
unsigned long acpi_fill_madt(unsigned long current)
Definition: acpi_tables.c:17