From 7733fa5d5ca3191e0231ce83031dba50eba6198b Mon Sep 17 00:00:00 2001 From: mutchiko <95985922+mutchiko@users.noreply.github.com> Date: Mon, 13 Jan 2025 22:35:05 +0100 Subject: [PATCH] Fix Alpha 17 rt fan speed issues credit to @Freihut for noticing what i didn't fixes https://github.com/BeardOverflow/msi-ec/issues/164 --- msi-ec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msi-ec.c b/msi-ec.c index 7f9cc0a..8c159c0 100644 --- a/msi-ec.c +++ b/msi-ec.c @@ -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, @@ -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,