Browse Source

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>
Tim Harvey 2 years ago
parent
commit
658eb1abd8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      board/gateworks/venice/gsc.c

+ 1 - 1
board/gateworks/venice/gsc.c

@@ -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;