Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 -2
+2 -2
drivers/platform/chrome/cros_ec_lpc.c
··· 707 707 /* Framework Laptop (12th Gen Intel Core) */ 708 708 .matches = { 709 709 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)"), 711 711 }, 712 712 .driver_data = (void *)&framework_laptop_mec_lpc_driver_data, 713 713 }, ··· 715 715 /* Framework Laptop (13th Gen Intel Core) */ 716 716 .matches = { 717 717 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)"), 719 719 }, 720 720 .driver_data = (void *)&framework_laptop_mec_lpc_driver_data, 721 721 },