diff mbox series

[v2,1/5] board: gateworks: venice: display hwmon details by default

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

Commit Message

Tim Harvey Aug. 18, 2021, 10:24 p.m. UTC
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(+)

Comments

Fabio Estevam Aug. 23, 2021, 6:04 p.m. UTC | #1
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>
Stefano Babic Oct. 7, 2021, 2:13 p.m. UTC | #2
> 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 mbox series

Patch

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