aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/thermal/rcar_thermal.c
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2012-11-25 21:32:20 -0500
committerZhang Rui <rui.zhang@intel.com>2012-11-25 22:03:55 -0500
commitd12250ef8dc1bbc811d505776be053e358ba82f5 (patch)
tree4b1304f49d1d9f80f88c26fbf4f60e75ab0281c6 /drivers/thermal/rcar_thermal.c
parentc499703e64bef8f2e8ffe9ea7ee63a0a926b5530 (diff)
thermal: rcar: add rcar_zone_to_priv() macro
This patch adds rcar_zone_to_priv() which is a helper macro for gettign private data. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal/rcar_thermal.c')
-rw-r--r--drivers/thermal/rcar_thermal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c
index f2678ff0ed2b..90db951725da 100644
--- a/drivers/thermal/rcar_thermal.c
+++ b/drivers/thermal/rcar_thermal.c
@@ -44,6 +44,7 @@ struct rcar_thermal_priv {
44}; 44};
45 45
46#define MCELSIUS(temp) ((temp) * 1000) 46#define MCELSIUS(temp) ((temp) * 1000)
47#define rcar_zone_to_priv(zone) (zone->devdata)
47 48
48/* 49/*
49 * basic functions 50 * basic functions
@@ -98,7 +99,7 @@ static void rcar_thermal_bset(struct rcar_thermal_priv *priv, u32 reg,
98static int rcar_thermal_get_temp(struct thermal_zone_device *zone, 99static int rcar_thermal_get_temp(struct thermal_zone_device *zone,
99 unsigned long *temp) 100 unsigned long *temp)
100{ 101{
101 struct rcar_thermal_priv *priv = zone->devdata; 102 struct rcar_thermal_priv *priv = rcar_zone_to_priv(zone);
102 int val, min, max, tmp; 103 int val, min, max, tmp;
103 104
104 tmp = -200; /* default */ 105 tmp = -200; /* default */