Skip to content

Commit abaa845

Browse files
committed
Add support for AS51XXT
Fixes #4
1 parent 534aa16 commit abaa845

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

asustor.c

+10
Original file line numberDiff line numberDiff line change
@@ -239,13 +239,23 @@ static const struct dmi_system_id asustor_systems[] = {
239239
.driver_data = &asustor_6700_driver_data,
240240
},
241241
{
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.
242251
.matches = {
243252
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
244253
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS61xx"),
245254
},
246255
.driver_data = &asustor_6100_driver_data,
247256
},
248257
{
258+
// AS6XXT.
249259
.matches = {
250260
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTOR Inc."),
251261
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS-6xxT"),

0 commit comments

Comments
 (0)