thermal/drivers/qcom/tsens: Fix wrong version id dbg_version_show

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>
Link: https://lore.kernel.org/r/20221022125657.22530-3-ansuelsmth@gmail.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@kernel.org>
This commit is contained in:
Christian Marangi 2022-10-22 14:56:56 +02:00 коммит произвёл Daniel Lezcano
Родитель de48d8766a
Коммит c7e077e921
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -713,7 +713,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;