drivers: thermal: tsens: Use consistent names for variables
authorAmit Kucheria <amit.kucheria@linaro.org>
Wed, 20 Mar 2019 13:17:45 +0000 (18:47 +0530)
committerEduardo Valentin <edubezval@gmail.com>
Tue, 14 May 2019 03:35:36 +0000 (20:35 -0700)
tsens_get_temp() uses the name 'data' for the void pointer, use the same
in tsens_get_trend() for consistency.

Remove a stray space while we're at it.

Signed-off-by: Amit Kucheria <amit.kucheria@linaro.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
drivers/thermal/qcom/tsens.c

index 4582d2b30e94aa91e513832b87e7408d3145a486..0b5be08d515fab4506437d84d687b345d1907339 100644 (file)
@@ -20,13 +20,13 @@ static int tsens_get_temp(void *data, int *temp)
        return priv->ops->get_temp(priv, s->id, temp);
 }
 
-static int tsens_get_trend(void *p, int trip, enum thermal_trend *trend)
+static int tsens_get_trend(void *data, int trip, enum thermal_trend *trend)
 {
-       const struct tsens_sensor *s = p;
+       const struct tsens_sensor *s = data;
        struct tsens_priv *priv = s->priv;
 
        if (priv->ops->get_trend)
-               return  priv->ops->get_trend(priv, s->id, trend);
+               return priv->ops->get_trend(priv, s->id, trend);
 
        return -ENOTSUPP;
 }