Commit c1c6f3b3 authored by Amit Kucheria's avatar Amit Kucheria Committed by Daniel Lezcano

drivers: thermal: tsens: use simpler variables

We already dereference the sensor and save it into a variable. Use the
variable directly to make the code easier to read.
Signed-off-by: default avatarAmit Kucheria <amit.kucheria@linaro.org>
Reviewed-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: default avatarStephen Boyd <swboyd@chromium.org>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/5dc4356edfb8dffa377fb561359bf41a6f1fdf17.1584015867.git.amit.kucheria@linaro.org
parent e604bdd2
...@@ -369,7 +369,7 @@ irqreturn_t tsens_irq_thread(int irq, void *data) ...@@ -369,7 +369,7 @@ irqreturn_t tsens_irq_thread(int irq, void *data)
tsens_set_interrupt(priv, hw_id, UPPER, disable); tsens_set_interrupt(priv, hw_id, UPPER, disable);
if (d.up_thresh > temp) { if (d.up_thresh > temp) {
dev_dbg(priv->dev, "[%u] %s: re-arm upper\n", dev_dbg(priv->dev, "[%u] %s: re-arm upper\n",
priv->sensor[i].hw_id, __func__); hw_id, __func__);
tsens_set_interrupt(priv, hw_id, UPPER, enable); tsens_set_interrupt(priv, hw_id, UPPER, enable);
} else { } else {
trigger = true; trigger = true;
...@@ -380,7 +380,7 @@ irqreturn_t tsens_irq_thread(int irq, void *data) ...@@ -380,7 +380,7 @@ irqreturn_t tsens_irq_thread(int irq, void *data)
tsens_set_interrupt(priv, hw_id, LOWER, disable); tsens_set_interrupt(priv, hw_id, LOWER, disable);
if (d.low_thresh < temp) { if (d.low_thresh < temp) {
dev_dbg(priv->dev, "[%u] %s: re-arm low\n", dev_dbg(priv->dev, "[%u] %s: re-arm low\n",
priv->sensor[i].hw_id, __func__); hw_id, __func__);
tsens_set_interrupt(priv, hw_id, LOWER, enable); tsens_set_interrupt(priv, hw_id, LOWER, enable);
} else { } else {
trigger = true; trigger = true;
...@@ -393,7 +393,7 @@ irqreturn_t tsens_irq_thread(int irq, void *data) ...@@ -393,7 +393,7 @@ irqreturn_t tsens_irq_thread(int irq, void *data)
if (trigger) { if (trigger) {
dev_dbg(priv->dev, "[%u] %s: TZ update trigger (%d mC)\n", dev_dbg(priv->dev, "[%u] %s: TZ update trigger (%d mC)\n",
hw_id, __func__, temp); hw_id, __func__, temp);
thermal_zone_device_update(priv->sensor[i].tzd, thermal_zone_device_update(s->tzd,
THERMAL_EVENT_UNSPECIFIED); THERMAL_EVENT_UNSPECIFIED);
} else { } else {
dev_dbg(priv->dev, "[%u] %s: no violation: %d\n", dev_dbg(priv->dev, "[%u] %s: no violation: %d\n",
...@@ -436,7 +436,7 @@ int tsens_set_trips(void *_sensor, int low, int high) ...@@ -436,7 +436,7 @@ int tsens_set_trips(void *_sensor, int low, int high)
spin_unlock_irqrestore(&priv->ul_lock, flags); spin_unlock_irqrestore(&priv->ul_lock, flags);
dev_dbg(dev, "[%u] %s: (%d:%d)->(%d:%d)\n", dev_dbg(dev, "[%u] %s: (%d:%d)->(%d:%d)\n",
s->hw_id, __func__, d.low_thresh, d.up_thresh, cl_low, cl_high); hw_id, __func__, d.low_thresh, d.up_thresh, cl_low, cl_high);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment