public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops
@ 2024-12-24 18:55 Dustin L. Howett
  2024-12-24 19:30 ` Thomas Weißschuh
  2024-12-25  2:41 ` Tzung-Bi Shih
  0 siblings, 2 replies; 3+ messages in thread
From: Dustin L. Howett @ 2024-12-24 18:55 UTC (permalink / raw)
  To: Benson Leung, Guenter Roeck, Tzung-Bi Shih, Thomas Weißschuh,
	Alexandru M Stan
  Cc: linux, stable, chrome-platform, Dustin L. Howett

The product names for the Framework Laptop (12th and 13th Generation
Intel Core) are incorrect as of 62be134abf42.

Fixes: 62be134abf42 ("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>
---
 drivers/platform/chrome/cros_ec_lpc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/platform/chrome/cros_ec_lpc.c b/drivers/platform/chrome/cros_ec_lpc.c
index 588be75aeca16b6150c12d2811e4c9dfc31b904e..69801ace0496dd9ed31bc3d408c43b96ccb71186 100644
--- a/drivers/platform/chrome/cros_ec_lpc.c
+++ b/drivers/platform/chrome/cros_ec_lpc.c
@@ -707,7 +707,7 @@ static const struct dmi_system_id cros_ec_lpc_dmi_table[] __initconst = {
 		/* Framework Laptop (12th Gen Intel Core) */
 		.matches = {
 			DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
-			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "12th Gen Intel Core"),
+			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Laptop (12th Gen Intel Core)"),
 		},
 		.driver_data = (void *)&framework_laptop_mec_lpc_driver_data,
 	},
@@ -715,7 +715,7 @@ static const struct dmi_system_id cros_ec_lpc_dmi_table[] __initconst = {
 		/* Framework Laptop (13th Gen Intel Core) */
 		.matches = {
 			DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
-			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "13th Gen Intel Core"),
+			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Laptop (13th Gen Intel Core)"),
 		},
 		.driver_data = (void *)&framework_laptop_mec_lpc_driver_data,
 	},

---
base-commit: a15ab7a5cc2a17b6a803f624fcf215f4e68d56b6
change-id: 20241224-platform-chrome-cros_ec_lpc-fix-product-identity-for-early-framework-laptops-757474281ace

Best regards,
-- 
Dustin L. Howett <dustin@howett.net>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops
  2024-12-24 18:55 [PATCH] platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops Dustin L. Howett
@ 2024-12-24 19:30 ` Thomas Weißschuh
  2024-12-25  2:41 ` Tzung-Bi Shih
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Weißschuh @ 2024-12-24 19:30 UTC (permalink / raw)
  To: Dustin L. Howett
  Cc: Benson Leung, Guenter Roeck, Tzung-Bi Shih, Thomas Weißschuh,
	Alexandru M Stan, linux, stable, chrome-platform

Dec 24, 2024 19:56:06 Dustin L. Howett <dustin@howett.net>:

> The product names for the Framework Laptop (12th and 13th Generation
> Intel Core) are incorrect as of 62be134abf42.
>
> Fixes: 62be134abf42 ("platform/chrome: cros_ec_lpc: switch primary DMI data for Framework Laptop")
> Cc: stable@vger.kernel.org # 6.12.x
> ---

This --- is spurious.

> Signed-off-by: Dustin L. Howett <dustin@howett.net>

Reviewed-by: Thomas Weißschuh <linux@weissschuh.net>

> ---
> drivers/platform/chrome/cros_ec_lpc.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/platform/chrome/cros_ec_lpc.c b/drivers/platform/chrome/cros_ec_lpc.c
> index 588be75aeca16b6150c12d2811e4c9dfc31b904e..69801ace0496dd9ed31bc3d408c43b96ccb71186 100644
> --- a/drivers/platform/chrome/cros_ec_lpc.c
> +++ b/drivers/platform/chrome/cros_ec_lpc.c
> @@ -707,7 +707,7 @@ static const struct dmi_system_id cros_ec_lpc_dmi_table[] __initconst = {
>         /* Framework Laptop (12th Gen Intel Core) */
>         .matches = {
>             DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
> -           DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "12th Gen Intel Core"),
> +           DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Laptop (12th Gen Intel Core)"),
>         },
>         .driver_data = (void *)&framework_laptop_mec_lpc_driver_data,
>     },
> @@ -715,7 +715,7 @@ static const struct dmi_system_id cros_ec_lpc_dmi_table[] __initconst = {
>         /* Framework Laptop (13th Gen Intel Core) */
>         .matches = {
>             DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
> -           DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "13th Gen Intel Core"),
> +           DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Laptop (13th Gen Intel Core)"),
>         },
>         .driver_data = (void *)&framework_laptop_mec_lpc_driver_data,
>     },
>
> ---
> base-commit: a15ab7a5cc2a17b6a803f624fcf215f4e68d56b6
> change-id: 20241224-platform-chrome-cros_ec_lpc-fix-product-identity-for-early-framework-laptops-757474281ace
>
> Best regards,
> --
> Dustin L. Howett <dustin@howett.net>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops
  2024-12-24 18:55 [PATCH] platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops Dustin L. Howett
  2024-12-24 19:30 ` Thomas Weißschuh
@ 2024-12-25  2:41 ` Tzung-Bi Shih
  1 sibling, 0 replies; 3+ messages in thread
From: Tzung-Bi Shih @ 2024-12-25  2:41 UTC (permalink / raw)
  To: Dustin L. Howett
  Cc: Benson Leung, Guenter Roeck, Thomas Weißschuh,
	Alexandru M Stan, linux, stable, chrome-platform

On Tue, Dec 24, 2024 at 12:55:58PM -0600, Dustin L. Howett wrote:
> The product names for the Framework Laptop (12th and 13th Generation
> Intel Core) are incorrect as of 62be134abf42.
> 
> [...]

Applied to

    https://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git for-next

[1/1] platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops
      commit: dcd59d0d7d51b2a4b768fc132b0d74a97dfd6d6a

Thanks!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-12-25  2:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-24 18:55 [PATCH] platform/chrome: cros_ec_lpc: fix product identity for early Framework Laptops Dustin L. Howett
2024-12-24 19:30 ` Thomas Weißschuh
2024-12-25  2:41 ` Tzung-Bi Shih

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox