aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorPeter Feuerer <peter@piie.net>2014-11-28 09:20:51 -0500
committerDarren Hart <dvhart@linux.intel.com>2014-12-04 06:24:55 -0500
commit7e8b6d737da9c684f02d315e312110be21fbf992 (patch)
tree609167a666dc95c434baff497f1c463f4e5a9a9a /drivers/platform
parent48c8dd64345ba2a8c41556095c7adacb1c8af7c1 (diff)
acerhdf: added critical trip point
added critical trip point which represents the temperature limit. Added return -EINVAL in case wrong trip point is provided. Cc: platform-driver-x86@vger.kernel.org Cc: Darren Hart <dvhart@infradead.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Andreas Mohr <andi@lisas.de> Cc: Borislav Petkov <bp@suse.de> Cc: Javi Merino <javi.merino@arm.com> Signed-off-by: Peter Feuerer <peter@piie.net> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/acerhdf.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/platform/x86/acerhdf.c b/drivers/platform/x86/acerhdf.c
index 7fe7dbf2f4ef..91b16c8a45bd 100644
--- a/drivers/platform/x86/acerhdf.c
+++ b/drivers/platform/x86/acerhdf.c
@@ -443,6 +443,10 @@ static int acerhdf_get_trip_type(struct thermal_zone_device *thermal, int trip,
443{ 443{
444 if (trip == 0) 444 if (trip == 0)
445 *type = THERMAL_TRIP_ACTIVE; 445 *type = THERMAL_TRIP_ACTIVE;
446 else if (trip == 1)
447 *type = THERMAL_TRIP_CRITICAL;
448 else
449 return -EINVAL;
446 450
447 return 0; 451 return 0;
448} 452}
@@ -463,6 +467,10 @@ static int acerhdf_get_trip_temp(struct thermal_zone_device *thermal, int trip,
463{ 467{
464 if (trip == 0) 468 if (trip == 0)
465 *temp = fanon; 469 *temp = fanon;
470 else if (trip == 1)
471 *temp = ACERHDF_TEMP_CRIT;
472 else
473 return -EINVAL;
466 474
467 return 0; 475 return 0;
468} 476}
@@ -713,7 +721,7 @@ static int acerhdf_register_thermal(void)
713 if (IS_ERR(cl_dev)) 721 if (IS_ERR(cl_dev))
714 return -EINVAL; 722 return -EINVAL;
715 723
716 thz_dev = thermal_zone_device_register("acerhdf", 1, 0, NULL, 724 thz_dev = thermal_zone_device_register("acerhdf", 2, 0, NULL,
717 &acerhdf_dev_ops, 725 &acerhdf_dev_ops,
718 &acerhdf_zone_params, 0, 726 &acerhdf_zone_params, 0,
719 (kernelmode) ? interval*1000 : 0); 727 (kernelmode) ? interval*1000 : 0);