Skip to content

Commit ab8beb2

Browse files
committed
Merge tag 'chrome-platform-for-6.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux
Pull chrome platform fix from Tzung-Bi Shih: - Fix wrong product names for early Framework Laptops * tag 'chrome-platform-for-6.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux: platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops
2 parents 9b2ffa6 + dcd59d0 commit ab8beb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/platform/chrome/cros_ec_lpc.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -707,15 +707,15 @@ static const struct dmi_system_id cros_ec_lpc_dmi_table[] __initconst = {
707707
/* Framework Laptop (12th Gen Intel Core) */
708708
.matches = {
709709
DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
710-
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "12th Gen Intel Core"),
710+
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Laptop (12th Gen Intel Core)"),
711711
},
712712
.driver_data = (void *)&framework_laptop_mec_lpc_driver_data,
713713
},
714714
{
715715
/* Framework Laptop (13th Gen Intel Core) */
716716
.matches = {
717717
DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
718-
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "13th Gen Intel Core"),
718+
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Laptop (13th Gen Intel Core)"),
719719
},
720720
.driver_data = (void *)&framework_laptop_mec_lpc_driver_data,
721721
},

0 commit comments

Comments
 (0)