diff options
author | Varun Wadekar <vwadekar@nvidia.com> | 2011-05-12 14:21:20 +0530 |
---|---|---|
committer | Varun Colbert <vcolbert@nvidia.com> | 2011-05-18 22:44:01 -0700 |
commit | 05f8714bb4fe61f9bb5103429d270c89d4c40f55 (patch) | |
tree | f84548922ebe4d45aefcf7697f3c272f527e793a /include | |
parent | 2f777956b8ca3577cd5bc298d97c01be97ca3267 (diff) |
misc: nct1008: update edp zones for current temperature
nct1008 will now use the ALERT# functionality to
decide which edp zone to switch to.
Change-Id: I1616a1d88e9f2f308a8b31935dbecec05ef54bca
Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
Reviewed-on: http://git-master/r/31340
Reviewed-by: Diwakar Tundlam <dtundlam@nvidia.com>
Tested-by: Diwakar Tundlam <dtundlam@nvidia.com>
Reviewed-by: Scott Williams <scwilliams@nvidia.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nct1008.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/nct1008.h b/include/linux/nct1008.h index d65693507299..8702630d8a1a 100644 --- a/include/linux/nct1008.h +++ b/include/linux/nct1008.h @@ -25,6 +25,10 @@ #include <linux/types.h> +#include <mach/edp.h> + +#define MAX_ZONES 16 + struct nct1008_platform_data { bool supported_hwrev; bool ext_range; @@ -34,6 +38,8 @@ struct nct1008_platform_data { u8 shutdown_ext_limit; u8 shutdown_local_limit; u8 throttling_ext_limit; + u8 thermal_zones[MAX_ZONES]; + u8 thermal_zones_sz; void (*alarm_fn)(bool raised); }; |