Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for AS51XXT #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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