Commit 49c3eb30 authored by Hans de Goede's avatar Hans de Goede Committed by Kalle Valo

brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet

The Cyberbook T116 tablet contains quite generic names in the sys_vendor
and product_name DMI strings, without this patch brcmfmac will try to load:
"brcmfmac43455-sdio.Default string-Default string.txt" as nvram file which
is way too generic.

The nvram file shipped on the factory Android image contains the exact
same settings as those used on the AcePC T8 mini PC, so point the new
DMI nvram filename quirk to the acepc-t8 nvram file.
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210928160633.96928-1-hdegoede@redhat.com
parent 6cd4b59d
...@@ -75,6 +75,16 @@ static const struct dmi_system_id dmi_platform_data[] = { ...@@ -75,6 +75,16 @@ static const struct dmi_system_id dmi_platform_data[] = {
}, },
.driver_data = (void *)&acepc_t8_data, .driver_data = (void *)&acepc_t8_data,
}, },
{
/* Cyberbook T116 rugged tablet */
.matches = {
DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"),
DMI_EXACT_MATCH(DMI_BOARD_NAME, "Cherry Trail CR"),
DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "20170531"),
},
/* The factory image nvram file is identical to the ACEPC T8 one */
.driver_data = (void *)&acepc_t8_data,
},
{ {
/* Match for the GPDwin which unfortunately uses somewhat /* Match for the GPDwin which unfortunately uses somewhat
* generic dmi strings, which is why we test for 4 strings. * generic dmi strings, which is why we test for 4 strings.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment