diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-11-09 16:15:00 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-11-16 00:05:04 +0100 |
commit | 08cd86576084aca8fd59c73ac9bbff12ae78ae91 (patch) | |
tree | e19b07f69d6839de5cc0e9631b75b8024ae70c64 | |
parent | bf8722aac82d926380f84530ec92d10291693260 (diff) |
i82371eb: Remove weak functions
Change-Id: I593f7745f79e7b5dd0f2f0acb7eb6e1b629fc6ca
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7376
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
-rw-r--r-- | src/southbridge/intel/i82371eb/acpi_tables.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/southbridge/intel/i82371eb/acpi_tables.c b/src/southbridge/intel/i82371eb/acpi_tables.c index a0cc82b951..891ae22b01 100644 --- a/src/southbridge/intel/i82371eb/acpi_tables.c +++ b/src/southbridge/intel/i82371eb/acpi_tables.c @@ -78,13 +78,7 @@ unsigned long __attribute__((weak)) acpi_fill_srat(unsigned long current) return current; } -unsigned long __attribute__((weak)) acpi_fill_madt(unsigned long current) -{ - /* mainboard has no ioapic */ - return current; -} - -unsigned long __attribute__((weak)) acpi_fill_mcfg(unsigned long current) +unsigned long acpi_fill_mcfg(unsigned long current) { /* chipset doesn't have mmconfig */ return current; |