From a90dab640375495378daaca9c4e011c3ee2654c1 Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Sun, 31 Dec 2023 09:35:57 +0200 Subject: [PATCH] Add AS63 using AS67 GPIOs --- asustor.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/asustor.c b/asustor.c index df02b0d..e9bfb96 100644 --- a/asustor.c +++ b/asustor.c @@ -230,8 +230,8 @@ static const struct dmi_system_id asustor_systems[] = { }, .driver_data = &asustor_6700_driver_data, }, - // the same also seemed to work with AS6602T, though I can't test that anymore { + // AS66 .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"), DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "GeminiLake"), @@ -239,6 +239,15 @@ static const struct dmi_system_id asustor_systems[] = { .driver_data = &asustor_6700_driver_data, }, { + // AS63 + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Intel Corporation"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Apollolake I Platform"), + }, + .driver_data = &asustor_6700_driver_data, + }, + { + // AS61 .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"), DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS61xx"), @@ -246,6 +255,7 @@ static const struct dmi_system_id asustor_systems[] = { .driver_data = &asustor_6100_driver_data, }, { + // AS6 .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTOR Inc."), DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AS-6xxT"),