diff mbox series

[v3,2/3] thermal: qcom: tsens: fix wrong version id dbg_version_show

Message ID 20221022125657.22530-3-ansuelsmth@gmail.com
State Accepted
Commit c7e077e921fa94e0c06c8d14af6c0504c8a5f4bd
Headers show
Series thermal: qcom: tsens: small fixup for debugfs | expand

Commit Message

Christian Marangi Oct. 22, 2022, 12:56 p.m. UTC
For VER_0 the version was incorrectly reported as 0.1.0.

Fix that and correctly report the major version for this old tsens
revision.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
---
 drivers/thermal/qcom/tsens.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/thermal/qcom/tsens.c b/drivers/thermal/qcom/tsens.c
index af688ce4d14d..467585c45d34 100644
--- a/drivers/thermal/qcom/tsens.c
+++ b/drivers/thermal/qcom/tsens.c
@@ -692,7 +692,7 @@  static int dbg_version_show(struct seq_file *s, void *data)
 			return ret;
 		seq_printf(s, "%d.%d.%d\n", maj_ver, min_ver, step_ver);
 	} else {
-		seq_puts(s, "0.1.0\n");
+		seq_printf(s, "0.%d.0\n", priv->feat->ver_major);
 	}
 
 	return 0;