diff options
author | Brian Paul <[email protected]> | 2018-01-11 09:57:50 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-01-17 11:17:56 -0700 |
commit | 23a5fae317c40285956cee383b2ab774f84058d6 (patch) | |
tree | 0e92ab24cfd25755d6eee28389f117154d079edf /src/gallium/auxiliary | |
parent | f774f2b52f56cb10fd7e4354e7c3861d370a58a8 (diff) |
gallium/hud: remove uint64_t casts in sensor query_sti_load() function
The hud_graph_add_value() function takes a double value, so just pass
the current/critical values as-is since they're doubles.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/hud/hud_sensors_temp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/hud/hud_sensors_temp.c b/src/gallium/auxiliary/hud/hud_sensors_temp.c index b912a4ea7a8..4d3a11b1c9c 100644 --- a/src/gallium/auxiliary/hud/hud_sensors_temp.c +++ b/src/gallium/auxiliary/hud/hud_sensors_temp.c @@ -165,19 +165,19 @@ query_sti_load(struct hud_graph *gr) switch (sti->mode) { case SENSORS_TEMP_CURRENT: - hud_graph_add_value(gr, (uint64_t) sti->current); + hud_graph_add_value(gr, sti->current); break; case SENSORS_TEMP_CRITICAL: - hud_graph_add_value(gr, (uint64_t) sti->critical); + hud_graph_add_value(gr, sti->critical); break; case SENSORS_VOLTAGE_CURRENT: - hud_graph_add_value(gr, (uint64_t)(sti->current * 1000)); + hud_graph_add_value(gr, sti->current * 1000); break; case SENSORS_CURRENT_CURRENT: - hud_graph_add_value(gr, (uint64_t) sti->current); + hud_graph_add_value(gr, sti->current); break; case SENSORS_POWER_CURRENT: - hud_graph_add_value(gr, (uint64_t) sti->current); + hud_graph_add_value(gr, sti->current); break; } |