/* * coreboot ACPI Table support * written by Stefan Reinauer * ACPI FADT, FACS, and DSDT table support added by * Nick Barker , and those portions * (C) Copyright 2004 Nick Barker * (C) Copyright 2005 Stefan Reinauer */ #include #include #include unsigned long acpi_fill_mcfg(unsigned long current) { /* Nothing to do */ return current; } unsigned long acpi_fill_slit(unsigned long current) { // Not implemented return current; } unsigned long acpi_fill_madt(unsigned long current) { /* Nothing to do */ return current; } unsigned long acpi_fill_srat(unsigned long current) { /* No NUMA, no SRAT */ return current; }