From: Kurt Borja Date: Mon, 11 Nov 2024 18:36:09 +0000 (-0300) Subject: alienware-wmi: Adds support to Alienware x17 R2 X-Git-Tag: v6.13-rc1~147^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01bd181d21cf65e43f30948f9216571218732a12;p=thirdparty%2Fkernel%2Flinux.git alienware-wmi: Adds support to Alienware x17 R2 Adds support to Alienware x17 R2 Tested-by: Samith Castro Signed-off-by: Kurt Borja Reviewed-by: Ilpo Järvinen Link: https://lore.kernel.org/r/20241111183609.14653-1-kuurtb@gmail.com Signed-off-by: Ilpo Järvinen --- diff --git a/drivers/platform/x86/dell/alienware-wmi.c b/drivers/platform/x86/dell/alienware-wmi.c index d1e72915ed4dd..36d182f217e24 100644 --- a/drivers/platform/x86/dell/alienware-wmi.c +++ b/drivers/platform/x86/dell/alienware-wmi.c @@ -267,6 +267,15 @@ static const struct dmi_system_id alienware_quirks[] __initconst = { }, .driver_data = &quirk_x_series, }, + { + .callback = dmi_matched, + .ident = "Alienware x17 R2", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Alienware"), + DMI_MATCH(DMI_PRODUCT_NAME, "Alienware x17 R2"), + }, + .driver_data = &quirk_x_series, + }, { .callback = dmi_matched, .ident = "Alienware X51 R1",