diff options
author | Lukasz Majewski <l.majewski@samsung.com> | 2015-01-23 13:10:00 +0100 |
---|---|---|
committer | Eduardo Valentin <edubezval@gmail.com> | 2015-01-24 17:32:03 -0400 |
commit | 1fe391bf0234add380245dea2dd72220394fe5fd (patch) | |
tree | d1d86a97320bd4a4623d2623ae83ef08fdae4895 /drivers/thermal/samsung/exynos_tmu.h | |
parent | f5576e3a9ea48334289aaaa711080d09e3405099 (diff) | |
download | linux-stable-1fe391bf0234add380245dea2dd72220394fe5fd.tar.gz linux-stable-1fe391bf0234add380245dea2dd72220394fe5fd.tar.bz2 linux-stable-1fe391bf0234add380245dea2dd72220394fe5fd.zip |
thermal: exynos: Modify exynos thermal code to use device tree for cpu cooling configuration
Up till now exynos_tmu_data.c was used for storing CPU cooling configuration
data. Now the Exynos thermal core code uses device tree to get this data.
For this purpose generic thermal code for configuring CPU cooling was
used.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal/samsung/exynos_tmu.h')
-rw-r--r-- | drivers/thermal/samsung/exynos_tmu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/thermal/samsung/exynos_tmu.h b/drivers/thermal/samsung/exynos_tmu.h index 7f880d2e53f5..627dec92ec1b 100644 --- a/drivers/thermal/samsung/exynos_tmu.h +++ b/drivers/thermal/samsung/exynos_tmu.h @@ -83,9 +83,6 @@ enum soc_type { * @second_point_trim: temp value of the second point trimming * @default_temp_offset: default temperature offset in case of no trimming * @cal_type: calibration type for temperature - * @freq_clip_table: Table representing frequency reduction percentage. - * @freq_tab_count: Count of the above table as frequency reduction may - * applicable to only some of the trigger levels. * * This structure is required for configuration of exynos_tmu driver. */ @@ -111,8 +108,6 @@ struct exynos_tmu_platform_data { enum soc_type type; u32 cal_type; u32 cal_mode; - struct freq_clip_table freq_tab[4]; - unsigned int freq_tab_count; }; /** |