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 "G" family

Add support for the whole "Dell G" laptop family.

Cc: stable@vger.kernel.org
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
Link: https://patch.msgid.link/20251103-family-supp-v1-5-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
a6003d90 21ebfff1

+8 -48
+8 -48
drivers/platform/x86/dell/alienware-wmi-wmax.c
··· 162 162 .driver_data = &generic_quirks, 163 163 }, 164 164 { 165 - .ident = "Dell Inc. G15 5510", 165 + .ident = "Dell Inc. G15", 166 166 .matches = { 167 167 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 168 - DMI_MATCH(DMI_PRODUCT_NAME, "Dell G15 5510"), 168 + DMI_MATCH(DMI_PRODUCT_NAME, "Dell G15"), 169 169 }, 170 170 .driver_data = &g_series_quirks, 171 171 }, 172 172 { 173 - .ident = "Dell Inc. G15 5511", 173 + .ident = "Dell Inc. G16", 174 174 .matches = { 175 175 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 176 - DMI_MATCH(DMI_PRODUCT_NAME, "Dell G15 5511"), 176 + DMI_MATCH(DMI_PRODUCT_NAME, "Dell G16"), 177 177 }, 178 178 .driver_data = &g_series_quirks, 179 179 }, 180 180 { 181 - .ident = "Dell Inc. G15 5515", 181 + .ident = "Dell Inc. G3", 182 182 .matches = { 183 183 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 184 - DMI_MATCH(DMI_PRODUCT_NAME, "Dell G15 5515"), 184 + DMI_MATCH(DMI_PRODUCT_NAME, "G3"), 185 185 }, 186 186 .driver_data = &g_series_quirks, 187 187 }, 188 188 { 189 - .ident = "Dell Inc. G15 5530", 189 + .ident = "Dell Inc. G5", 190 190 .matches = { 191 191 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 192 - DMI_MATCH(DMI_PRODUCT_NAME, "Dell G15 5530"), 193 - }, 194 - .driver_data = &g_series_quirks, 195 - }, 196 - { 197 - .ident = "Dell Inc. G16 7630", 198 - .matches = { 199 - DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 200 - DMI_MATCH(DMI_PRODUCT_NAME, "Dell G16 7630"), 201 - }, 202 - .driver_data = &g_series_quirks, 203 - }, 204 - { 205 - .ident = "Dell Inc. G3 3500", 206 - .matches = { 207 - DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 208 - DMI_MATCH(DMI_PRODUCT_NAME, "G3 3500"), 209 - }, 210 - .driver_data = &g_series_quirks, 211 - }, 212 - { 213 - .ident = "Dell Inc. G3 3590", 214 - .matches = { 215 - DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 216 - DMI_MATCH(DMI_PRODUCT_NAME, "G3 3590"), 217 - }, 218 - .driver_data = &g_series_quirks, 219 - }, 220 - { 221 - .ident = "Dell Inc. G5 5500", 222 - .matches = { 223 - DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 224 - DMI_MATCH(DMI_PRODUCT_NAME, "G5 5500"), 225 - }, 226 - .driver_data = &g_series_quirks, 227 - }, 228 - { 229 - .ident = "Dell Inc. G5 5505", 230 - .matches = { 231 - DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 232 - DMI_MATCH(DMI_PRODUCT_NAME, "G5 5505"), 192 + DMI_MATCH(DMI_PRODUCT_NAME, "G5"), 233 193 }, 234 194 .driver_data = &g_series_quirks, 235 195 },