Message ID | 20210818222431.13862-1-tharvey@gateworks.com |
---|---|
State | Accepted |
Commit | 9e4b38a12ae560802e7c06cc4402fc07587c0037 |
Delegated to: | Stefano Babic |
Headers | show |
Series | [v2,1/5] board: gateworks: venice: display hwmon details by default | expand |
Hi Tim, On Wed, Aug 18, 2021 at 7:24 PM Tim Harvey <tharvey@gateworks.com> wrote: > > Display hwmon values by default when using the 'gsc' command. > > Signed-off-by: Tim Harvey <tharvey@gateworks.com> > --- > v2: no changes For the v2 series: Reviewed-by: Fabio Estevam <festevam@gmail.com>
> 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> Applied to u-boot-imx, master, thanks ! Best regards, Stefano Babic
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; }
Display hwmon values by default when using the 'gsc' command. Signed-off-by: Tim Harvey <tharvey@gateworks.com> --- v2: no changes --- board/gateworks/venice/gsc.c | 3 +++ 1 file changed, 3 insertions(+)