Skip to content

Commit dcd59d0

Browse files
DHowettTzung-Bi Shih
authored andcommitted
platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops
The product names for the Framework Laptop (12th and 13th Generation Intel Core) are incorrect as of 62be134. Fixes: 62be134 ("platform/chrome: cros_ec_lpc: switch primary DMI data for Framework Laptop") Cc: stable@vger.kernel.org # 6.12.x Signed-off-by: Dustin L. Howett <dustin@howett.net> Reviewed-by: Thomas Weißschuh <linux@weissschuh.net> Link: https://lore.kernel.org/r/20241224-platform-chrome-cros_ec_lpc-fix-product-identity-for-early-framework-laptops-v1-1-0d31d6e1d22c@howett.net Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
1 parent ea45f3f commit dcd59d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/platform/chrome/cros_ec_lpc.c

Lines changed: 2 additions & 2 deletions
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)