summaryrefslogtreecommitdiff
path: root/drivers/platform
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2020-01-06 15:42:19 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-02-05 21:22:45 +0000
commit689233e8f9989b513c6350049cb6309fb40cb4c4 (patch)
treebfcf3d6f66380a760746f94962693364ae60f241 /drivers/platform
parent7790a471e80c01a5b2b83e4d9bd37581be32579e (diff)
downloadlinux-689233e8f9989b513c6350049cb6309fb40cb4c4.tar.gz
linux-689233e8f9989b513c6350049cb6309fb40cb4c4.tar.bz2
linux-689233e8f9989b513c6350049cb6309fb40cb4c4.zip
platform/x86: GPD pocket fan: Allow somewhat lower/higher temperature limits
[ Upstream commit 1f27dbd8265dbb379926c8f6a4453fe7fe26d7a3 ] Allow the user to configure the fan to turn on / speed-up at lower thresholds then before (20 degrees Celcius as minimum instead of 40) and likewise also allow the user to delay the fan speeding-up till the temperature hits 90 degrees Celcius (was 70). Cc: Jason Anderson <jasona.594@gmail.com> Reported-by: Jason Anderson <jasona.594@gmail.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/gpd-pocket-fan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/gpd-pocket-fan.c b/drivers/platform/x86/gpd-pocket-fan.c
index 73eb1572b966..b471b86c28fe 100644
--- a/drivers/platform/x86/gpd-pocket-fan.c
+++ b/drivers/platform/x86/gpd-pocket-fan.c
@@ -127,7 +127,7 @@ static int gpd_pocket_fan_probe(struct platform_device *pdev)
int i;
for (i = 0; i < ARRAY_SIZE(temp_limits); i++) {
- if (temp_limits[i] < 40000 || temp_limits[i] > 70000) {
+ if (temp_limits[i] < 20000 || temp_limits[i] > 90000) {
dev_err(&pdev->dev, "Invalid temp-limit %d (must be between 40000 and 70000)\n",
temp_limits[i]);
temp_limits[0] = TEMP_LIMIT0_DEFAULT;