File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Kernel driver asus_ec_sensors
4
4
=================================
5
5
6
6
Supported boards:
7
+ * MAXIMUS VI HERO
7
8
* PRIME X470-PRO
8
9
* PRIME X570-PRO
9
10
* PRIME X670E-PRO WIFI
Original file line number Diff line number Diff line change @@ -313,6 +313,15 @@ struct ec_board_info {
313
313
enum board_family family ;
314
314
};
315
315
316
+ static const struct ec_board_info board_info_maximus_vi_hero = {
317
+ .sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
318
+ SENSOR_TEMP_T_SENSOR |
319
+ SENSOR_TEMP_VRM | SENSOR_SET_TEMP_WATER |
320
+ SENSOR_FAN_CPU_OPT | SENSOR_FAN_WATER_FLOW ,
321
+ .mutex_path = ACPI_GLOBAL_LOCK_PSEUDO_PATH ,
322
+ .family = family_intel_300_series ,
323
+ };
324
+
316
325
static const struct ec_board_info board_info_prime_x470_pro = {
317
326
.sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
318
327
SENSOR_TEMP_T_SENSOR | SENSOR_TEMP_VRM |
@@ -527,6 +536,8 @@ static const struct ec_board_info board_info_tuf_gaming_x670e_plus = {
527
536
}
528
537
529
538
static const struct dmi_system_id dmi_table [] = {
539
+ DMI_EXACT_MATCH_ASUS_BOARD_NAME ("MAXIMUS VI HERO" ,
540
+ & board_info_maximus_vi_hero ),
530
541
DMI_EXACT_MATCH_ASUS_BOARD_NAME ("PRIME X470-PRO" ,
531
542
& board_info_prime_x470_pro ),
532
543
DMI_EXACT_MATCH_ASUS_BOARD_NAME ("PRIME X570-PRO" ,
You can’t perform that action at this time.
0 commit comments