[coreboot-gerrit] Patch set updated for coreboot: 415b780 i82371eb: Remove weak functions

Vladimir Serbinenko (phcoder@gmail.com) gerrit at coreboot.org
Sun Nov 9 19:05:43 CET 2014


Vladimir Serbinenko (phcoder at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7376

-gerrit

commit 415b780bbb78b52764a7a42f56c20798f187d443
Author: Vladimir Serbinenko <phcoder at gmail.com>
Date:   Sun Nov 9 16:15:00 2014 +0100

    i82371eb: Remove weak functions
    
    Change-Id: I593f7745f79e7b5dd0f2f0acb7eb6e1b629fc6ca
    Signed-off-by: Vladimir Serbinenko <phcoder at gmail.com>
---
 src/southbridge/intel/i82371eb/acpi_tables.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/southbridge/intel/i82371eb/acpi_tables.c b/src/southbridge/intel/i82371eb/acpi_tables.c
index 8f3d5b5..16f2778 100644
--- a/src/southbridge/intel/i82371eb/acpi_tables.c
+++ b/src/southbridge/intel/i82371eb/acpi_tables.c
@@ -61,13 +61,13 @@ void generate_cpu_entries(void)
 	acpigen_pop_len();
 }
 
-unsigned long __attribute__((weak)) acpi_fill_madt(unsigned long current)
+unsigned long acpi_fill_madt(unsigned long current)
 {
-	/* mainboard has no ioapic */
+	/* chipset 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;



More information about the coreboot-gerrit mailing list