drivers: regulator: shell: fix printing of first voltage

The first supported voltages was not printed.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-12-27 16:39:56 +01:00 committed by Fabio Baltieri
parent 4f3d5a10c4
commit ea7293e464

View file

@ -146,7 +146,7 @@ static int cmd_vlist(const struct shell *sh, size_t argc, char **argv)
(void)regulator_list_voltage(dev, i, &volt_uv);
/* do not print repeated voltages */
if ((i > 0U) && (last_volt_uv != volt_uv)) {
if ((i == 0U) || (last_volt_uv != volt_uv)) {
microtoshell(sh, 'V', volt_uv);
}