We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 534aa16 commit abaa845Copy full SHA for abaa845
asustor.c
@@ -239,13 +239,23 @@ static const struct dmi_system_id asustor_systems[] = {
239
.driver_data = &asustor_6700_driver_data,
240
},
241
{
242
+ // AS51XXT.
243
+ .matches = {
244
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
245
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS Series"),
246
+ },
247
+ .driver_data = &asustor_6700_driver_data, // TODO(mafredri): More like 6700 or 6100?
248
249
+ {
250
+ // AS61XXT.
251
.matches = {
252
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
253
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS61xx"),
254
255
.driver_data = &asustor_6100_driver_data,
256
257
258
+ // AS6XXT.
259
260
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTOR Inc."),
261
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS-6xxT"),
0 commit comments