Skip to content

Commit

Permalink
Fix Alpha 17 rt fan speed issues
Browse files Browse the repository at this point in the history
credit to @Freihut for noticing what i didn't

fixes BeardOverflow#164
  • Loading branch information
mutchiko authored Jan 13, 2025
1 parent 2702f17 commit 7733fa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msi-ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,7 @@ static struct msi_ec_conf CONF22 __initdata = {
},
.cpu = {
.rt_temp_address = 0x68,
.rt_fan_speed_address = 0x71,
.rt_fan_speed_address = 0xcd,
.rt_fan_speed_base_min = 0x19,
.rt_fan_speed_base_max = 0x37,
.bs_fan_speed_address = MSI_EC_ADDR_UNKNOWN,
Expand All @@ -1884,7 +1884,7 @@ static struct msi_ec_conf CONF22 __initdata = {
},
.gpu = {
.rt_temp_address = 0x80,
.rt_fan_speed_address = 0x89,
.rt_fan_speed_address = 0xcb,
},
.leds = {
.micmute_led_address = 0x2b,
Expand Down

1 comment on commit 7733fa5

@Freihut
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI: This doesn't fix the issues with incorrect fan speeds, because cpu_realtime_fan_speed_show() still calculates absolute nonsense.

Please sign in to comment.