]> git.karo-electronics.de Git - linux-beck.git/commitdiff
thermal: rcar: add rcar_zone_to_priv() macro
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 26 Nov 2012 02:32:20 +0000 (02:32 +0000)
committerZhang Rui <rui.zhang@intel.com>
Mon, 26 Nov 2012 03:03:55 +0000 (11:03 +0800)
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>
drivers/thermal/rcar_thermal.c

index f2678ff0ed2bb575bf7ad2a9f82597cf0e853b28..90db951725da46a7663264d94e2fa928a058e2dc 100644 (file)
@@ -44,6 +44,7 @@ struct rcar_thermal_priv {
 };
 
 #define MCELSIUS(temp)                 ((temp) * 1000)
+#define rcar_zone_to_priv(zone)                (zone->devdata)
 
 /*
  *             basic functions
@@ -98,7 +99,7 @@ static void rcar_thermal_bset(struct rcar_thermal_priv *priv, u32 reg,
 static int rcar_thermal_get_temp(struct thermal_zone_device *zone,
                           unsigned long *temp)
 {
-       struct rcar_thermal_priv *priv = zone->devdata;
+       struct rcar_thermal_priv *priv = rcar_zone_to_priv(zone);
        int val, min, max, tmp;
 
        tmp = -200; /* default */