Skip to content

Commit dbfb567

Browse files
kuu-rtij-intel
authored andcommitted
platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
Add support to Alienware Area-51m and Alienware m15 R5. Signed-off-by: Kurt Borja <kuurtb@gmail.com> Link: https://lore.kernel.org/r/20250710-m15_r5-v1-1-2c6ad44e5987@gmail.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
1 parent 2bfe3ae commit dbfb567

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

drivers/platform/x86/dell/alienware-wmi-wmax.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,14 @@ static struct awcc_quirks generic_quirks = {
8989
static struct awcc_quirks empty_quirks;
9090

9191
static const struct dmi_system_id awcc_dmi_table[] __initconst = {
92+
{
93+
.ident = "Alienware Area-51m",
94+
.matches = {
95+
DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
96+
DMI_MATCH(DMI_PRODUCT_NAME, "Alienware Area-51m"),
97+
},
98+
.driver_data = &generic_quirks,
99+
},
92100
{
93101
.ident = "Alienware Area-51m R2",
94102
.matches = {
@@ -97,6 +105,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
97105
},
98106
.driver_data = &generic_quirks,
99107
},
108+
{
109+
.ident = "Alienware m15 R5",
110+
.matches = {
111+
DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
112+
DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m15 R5"),
113+
},
114+
.driver_data = &generic_quirks,
115+
},
100116
{
101117
.ident = "Alienware m15 R7",
102118
.matches = {

0 commit comments

Comments
 (0)