mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
uw: Add IBP16G8 mk1 romid quirk
This commit is contained in:
parent
2b04cbc60a
commit
8b8f18ecc5
|
@ -977,14 +977,25 @@ static ssize_t uw_charging_prio_store(struct device *child,
|
|||
}
|
||||
|
||||
static const u8 uw_romid_PH4PxX[14] = {0x0C, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
|
||||
static const u8 uw_romid_PH6PxX[14] = {0x0C, 0x01, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
|
||||
|
||||
static const struct dmi_system_id uw_sku_romid_table[] = {
|
||||
// Start IBPG8 mk1
|
||||
// Logic: If product serial matches 16inch use that, else default to 14inch
|
||||
{
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_PRODUCT_SKU, "IBP1XI08MK1"),
|
||||
DMI_MATCH(DMI_PRODUCT_SERIAL, "PH6PRX"),
|
||||
},
|
||||
.driver_data = (void *)&uw_romid_PH6PxX
|
||||
},
|
||||
{
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_PRODUCT_SKU, "IBP1XI08MK1"),
|
||||
},
|
||||
.driver_data = (void *)&uw_romid_PH4PxX
|
||||
},
|
||||
// End IBPG8 mk1
|
||||
{}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue