From: Tomasz Figa Date: Tue, 18 Jun 2013 16:31:50 +0000 (+0900) Subject: thermal: exynos: Support both EXYNOS4X12 SoCs X-Git-Tag: accepted/tizen/common/20141203.182822~1989^2~18^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=08a763a3e2e90af471e44ddc6fa8e75b520ab4a1;p=platform%2Fkernel%2Flinux-arm64.git thermal: exynos: Support both EXYNOS4X12 SoCs EXYNOS4212 and EXYNOS4412 have the same thermal block, so there is no reason to include support only for EXYNOS4412 in this driver. Cc: linux-pm@vger.kernel.org Cc: Zhang Rui Cc: Eduardo Valentin Signed-off-by: Tomasz Figa Signed-off-by: Kyungmin Park Signed-off-by: Kukjin Kim --- diff --git a/drivers/thermal/exynos_thermal.c b/drivers/thermal/exynos_thermal.c index 788b1dd..4cbe3ee 100644 --- a/drivers/thermal/exynos_thermal.c +++ b/drivers/thermal/exynos_thermal.c @@ -817,7 +817,8 @@ static struct exynos_tmu_platform_data const exynos4210_default_tmu_data = { #define EXYNOS4210_TMU_DRV_DATA (NULL) #endif -#if defined(CONFIG_SOC_EXYNOS5250) || defined(CONFIG_SOC_EXYNOS4412) +#if defined(CONFIG_SOC_EXYNOS5250) || defined(CONFIG_SOC_EXYNOS4412) || \ + defined(CONFIG_SOC_EXYNOS4212) static struct exynos_tmu_platform_data const exynos_default_tmu_data = { .threshold_falling = 10, .trigger_levels[0] = 85,