summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTim Harvey <tharvey@gateworks.com>2021-08-19 01:24:27 +0300
committerStefano Babic <sbabic@denx.de>2021-10-07 17:53:50 +0300
commit9e4b38a12ae560802e7c06cc4402fc07587c0037 (patch)
tree3fc2d112cac9a546beb290442aff1def8ee9bb6b /board
parentaaac39218dd0b4b3f288ea8edae1c1dbf3406ae2 (diff)
downloadu-boot-9e4b38a12ae560802e7c06cc4402fc07587c0037.tar.xz
board: gateworks: venice: display hwmon details by default
Display hwmon values by default when using the 'gsc' command. Signed-off-by: Tim Harvey <tharvey@gateworks.com> Reviewed-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'board')
-rw-r--r--board/gateworks/venice/gsc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/board/gateworks/venice/gsc.c b/board/gateworks/venice/gsc.c
index 7d6acd7b4a..065d1fb8cc 100644
--- a/board/gateworks/venice/gsc.c
+++ b/board/gateworks/venice/gsc.c
@@ -527,6 +527,9 @@ static int gsc_info(int verbose)
printf("%d\n", buf[0] | buf[1] << 8 | buf[2] << 16 | buf[3] << 24);
}
+ /* Display hwmon */
+ gsc_hwmon();
+
return 0;
}