summaryrefslogtreecommitdiff
path: root/src/mainboard/via/epia-m/acpi_tables.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2007-11-04 16:50:27 +0000
committerStefan Reinauer <stepan@openbios.org>2007-11-04 16:50:27 +0000
commit2cb701499141cbafe6449394f718923a1458d4e9 (patch)
treed8e08114a65962816e30038b0f61f9042e21e1ff /src/mainboard/via/epia-m/acpi_tables.c
parent25d712ac16a853d96b8ec03d64b20f596c013b2c (diff)
downloadcoreboot-2cb701499141cbafe6449394f718923a1458d4e9.tar.xz
Add dummy function for MCFG on those mainboards that provide ACPI but don't
have PCIe MMCONFIG. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2941 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/via/epia-m/acpi_tables.c')
-rw-r--r--src/mainboard/via/epia-m/acpi_tables.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/via/epia-m/acpi_tables.c b/src/mainboard/via/epia-m/acpi_tables.c
index cf49338100..209434415b 100644
--- a/src/mainboard/via/epia-m/acpi_tables.c
+++ b/src/mainboard/via/epia-m/acpi_tables.c
@@ -13,14 +13,23 @@
extern unsigned char AmlCode[];
+unsigned long acpi_fill_mcfg(unsigned long current)
+{
+ /* Nothing to do */
+ 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;
}
unsigned long write_acpi_tables(unsigned long start)