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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Ilpo Järvinen <[email protected]> Signed-off-by: Ilpo Järvinen <[email protected]>
1 parent 2bfe3ae commit dbfb567

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

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)