diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2023-11-02 10:18:39 -0500 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-11-04 17:11:41 +0000 |
commit | 66e346cad3d07aac928057bc8e7ab601871131de (patch) | |
tree | 84cf4326eb526d02dc4e5da5d8da3c96f0413386 /src/mainboard | |
parent | 0285d67ae37bed601c127490b3d03625b0791c4a (diff) |
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 <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78876
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/poppy/variants/nami/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: |