aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/pcengines
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2017-11-01 09:49:16 +0100
committerNico Huber <nico.h@gmx.de>2019-03-16 16:22:16 +0000
commitebd8a4f90cf58cd03a95fcc01acea1c59b0cad4e (patch)
treecdff8fbc8e89cbe96236a00195856c135d151705 /src/mainboard/pcengines
parent4663f45caa2352760ee08ec28b9c2d6e2e8823f9 (diff)
x86/smbios: Untangle system and board tables
We were used to set the same values in the system and board tables. We'll keep the mainboard values as defaults for the system tables, so nothing changes unless somebody overrides the system table hooks. Change-Id: I3c9c95a1307529c3137647a161a698a4c3daa0ae Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/29477 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Richard Spiegel <richard.spiegel@silverbackltd.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/mainboard/pcengines')
-rw-r--r--src/mainboard/pcengines/apu1/mainboard.c2
-rw-r--r--src/mainboard/pcengines/apu2/mainboard.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/pcengines/apu1/mainboard.c b/src/mainboard/pcengines/apu1/mainboard.c
index 10460bd6f2..79a54b51eb 100644
--- a/src/mainboard/pcengines/apu1/mainboard.c
+++ b/src/mainboard/pcengines/apu1/mainboard.c
@@ -263,7 +263,7 @@ static void usb_oc_setup(void)
/*
* We will stuff the memory size into the smbios sku location.
*/
-const char *smbios_mainboard_sku(void)
+const char *smbios_system_sku(void)
{
static char sku[5];
if (sku[0] != 0)
diff --git a/src/mainboard/pcengines/apu2/mainboard.c b/src/mainboard/pcengines/apu2/mainboard.c
index 472b864bd9..5a19d20efc 100644
--- a/src/mainboard/pcengines/apu2/mainboard.c
+++ b/src/mainboard/pcengines/apu2/mainboard.c
@@ -235,7 +235,7 @@ const char *smbios_mainboard_serial_number(void)
/*
* We will stuff the memory size into the smbios sku location.
*/
-const char *smbios_mainboard_sku(void)
+const char *smbios_system_sku(void)
{
static char sku[5];
if (sku[0] != 0)