Skip to content

Commit

Permalink
fix mutex path for X670E Hero
Browse files Browse the repository at this point in the history
A user reported that they observe race condition warning (zeule#43) and after
looking once again into the DSDT source it was found that wrong mutex
was used.

Fixes: ebbbd75 ("Add preliminary support for the ROG Crosshair X670E Hero.")
Signed-off-by: Eugene Shalygin <[email protected]>
  • Loading branch information
zeule committed Aug 21, 2023
1 parent ebbbd75 commit e763a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asus-ec-sensors.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ static const struct ec_board_info board_info_crosshair_x670e_hero = {
.sensors = SENSOR_TEMP_CPU | SENSOR_TEMP_CPU_PACKAGE |
SENSOR_TEMP_MB | SENSOR_TEMP_VRM |
SENSOR_SET_TEMP_WATER,
.mutex_path = ASUS_HW_ACCESS_MUTEX_RMTW_ASMX,
.mutex_path = ACPI_GLOBAL_LOCK_PSEUDO_PATH,
.family = family_amd_600_series,
};

Expand Down

0 comments on commit e763a87

Please sign in to comment.