From 66e346cad3d07aac928057bc8e7ab601871131de Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Thu, 2 Nov 2023 10:18:39 -0500 Subject: [PATCH] mb/google/poppy/var/nami: Fix SMBIOS name for Akali360 Remove space to improve compatibility with OS drivers and various tools, and to be consistent with other device names with the 360 suffix. TEST=build/boot Windows/Linux on Akali360, verify audio functional. Change-Id: Ib9b909dba939f726e6fbe71f5b4956b432086029 Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/78876 Tested-by: build bot (Jenkins) Reviewed-by: Felix Singer --- src/mainboard/google/poppy/variants/nami/mainboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/google/poppy/variants/nami/mainboard.c b/src/mainboard/google/poppy/variants/nami/mainboard.c index e764523f3f..aaa51dd840 100644 --- a/src/mainboard/google/poppy/variants/nami/mainboard.c +++ b/src/mainboard/google/poppy/variants/nami/mainboard.c @@ -197,7 +197,7 @@ const char *smbios_mainboard_product_name(void) snprintf(product, sizeof(product), "Akali"); break; case SKU_0_AKALI360: case SKU_1_AKALI360: - snprintf(product, sizeof(product), "Akali 360"); break; + snprintf(product, sizeof(product), "Akali360"); break; case SKU_0_BARD: case SKU_1_BARD: case SKU_2_BARD: