Skip to content

Commit

Permalink
thermal: rcar: add rcar_zone_to_priv() macro
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kuninori Morimoto authored and Zhang Rui committed Nov 26, 2012
1 parent c499703 commit d12250e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/thermal/rcar_thermal.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ struct rcar_thermal_priv {
};

#define MCELSIUS(temp) ((temp) * 1000)
#define rcar_zone_to_priv(zone) (zone->devdata)

/*
* basic functions
Expand Down Expand Up @@ -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 */
Expand Down

0 comments on commit d12250e

Please sign in to comment.