board: gateworks: venice: gsc: fix voltage offset

The voltage offset property is in microvolts so must be scaled
accordingly.

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
This commit is contained in:
Tim Harvey 2021-06-30 17:07:39 -07:00 committed by Stefano Babic
parent c4e5656620
commit 658eb1abd8

View file

@ -298,7 +298,7 @@ int gsc_hwmon(void)
}
/* adjust by offset */
val += offset;
val += (offset / 1000);
printf("%-8s: %d.%03dV\n", label, val / 1000, val % 1000);
break;