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.

platform/x86: alienware-wmi-wmax: Add support for the whole "X" family

Add support for the whole "Alienware X" laptop family.

Cc: stable@vger.kernel.org
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
Link: https://patch.msgid.link/20251103-family-supp-v1-4-a241075d1787@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

authored by

Kurt Borja and committed by
Ilpo Järvinen
21ebfff1 e8c3c875

+4 -12
+4 -12
drivers/platform/x86/dell/alienware-wmi-wmax.c
··· 146 146 .driver_data = &generic_quirks, 147 147 }, 148 148 { 149 - .ident = "Alienware x15 R1", 149 + .ident = "Alienware x15", 150 150 .matches = { 151 151 DMI_MATCH(DMI_SYS_VENDOR, "Alienware"), 152 - DMI_MATCH(DMI_PRODUCT_NAME, "Alienware x15 R1"), 152 + DMI_MATCH(DMI_PRODUCT_NAME, "Alienware x15"), 153 153 }, 154 154 .driver_data = &generic_quirks, 155 155 }, 156 156 { 157 - .ident = "Alienware x15 R2", 157 + .ident = "Alienware x17", 158 158 .matches = { 159 159 DMI_MATCH(DMI_SYS_VENDOR, "Alienware"), 160 - DMI_MATCH(DMI_PRODUCT_NAME, "Alienware x15 R2"), 161 - }, 162 - .driver_data = &generic_quirks, 163 - }, 164 - { 165 - .ident = "Alienware x17 R2", 166 - .matches = { 167 - DMI_MATCH(DMI_SYS_VENDOR, "Alienware"), 168 - DMI_MATCH(DMI_PRODUCT_NAME, "Alienware x17 R2"), 160 + DMI_MATCH(DMI_PRODUCT_NAME, "Alienware x17"), 169 161 }, 170 162 .driver_data = &generic_quirks, 171 163 },