Skip to content

Commit

Permalink
Add support for AS51XXT
Browse files Browse the repository at this point in the history
Fixes #4
  • Loading branch information
mafredri committed Dec 17, 2023
1 parent 534aa16 commit 38afeac
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions asustor.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,23 @@ static const struct dmi_system_id asustor_systems[] = {
.driver_data = &asustor_6700_driver_data,
},
{
// AS51XXT.
.matches = {
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS Series"),
},
.driver_data = &asustor_6700_driver_data, // TODO(mafredri): More like 6700 or 6100?
},
{
// AS61XXT.
.matches = {
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS61xx"),
},
.driver_data = &asustor_6100_driver_data,
},
{
// AS6XXT
.matches = {
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTOR Inc."),
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS-6xxT"),
Expand Down

0 comments on commit 38afeac

Please sign in to comment.