Skip to content

Commit 72999d2

Browse files
committed
feat: Add support for ROG MAXIMUS X HERO
This commit adds in support for the ROG MAXIMUS X HERO motherboard
1 parent f6006fa commit 72999d2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

asus-ec-sensors.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,14 @@ static const struct ec_board_info board_info_maximus_vi_hero = {
479479
.family = family_intel_300_series,
480480
};
481481

482+
static const struct ec_board_info board_info_maximus_x_hero = {
483+
.sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
484+
SENSOR_TEMP_T_SENSOR |
485+
SENSOR_TEMP_VRM | SENSOR_FAN_CPU_OPT,
486+
.mutex_path = ASUS_HW_ACCESS_MUTEX_SB_PCI0_LPCB_SIO1_MUT0,
487+
.family = family_intel_300_series,
488+
};
489+
482490
static const struct ec_board_info board_info_maximus_xi_hero = {
483491
.sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
484492
SENSOR_TEMP_T_SENSOR |
@@ -820,6 +828,8 @@ static const struct dmi_system_id dmi_table[] = {
820828
&board_info_maximus_xi_hero),
821829
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG MAXIMUS XI HERO (WI-FI)",
822830
&board_info_maximus_xi_hero),
831+
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG MAXIMUS X HERO",
832+
&board_info_maximus_x_hero),
823833
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG MAXIMUS Z690 FORMULA",
824834
&board_info_maximus_z690_formula),
825835
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG STRIX B550-E GAMING",

0 commit comments

Comments
 (0)