diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 15:16:41 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 15:45:21 +0000 |
| commit | 6a02851a0e346cbff074dab87807c9ee9d1e8d94 (patch) | |
| tree | 8932b315535db789e0aced1b8478ae968cbc3382 | |
| parent | 862024c00f3126220ac425f9ec1f3d4286064688 (diff) | |
tegra210: Fix typo in a kernel message
- s/volatge/voltage/
MFC after: 5 days
| -rw-r--r-- | sys/arm64/nvidia/tegra210/max77620_regulators.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arm64/nvidia/tegra210/max77620_regulators.c b/sys/arm64/nvidia/tegra210/max77620_regulators.c index af1a5af20ec3..d52aeaef1287 100644 --- a/sys/arm64/nvidia/tegra210/max77620_regulators.c +++ b/sys/arm64/nvidia/tegra210/max77620_regulators.c @@ -364,7 +364,7 @@ max77620_get_sel(struct max77620_reg_sc *sc, uint8_t *sel) rv = RD1(sc->base_sc, sc->def->volt_reg, sel); if (rv != 0) { - printf("%s: cannot read volatge selector: %d\n", + printf("%s: cannot read voltage selector: %d\n", regnode_get_name(sc->regnode), rv); return (rv); } @@ -384,7 +384,7 @@ max77620_set_sel(struct max77620_reg_sc *sc, uint8_t sel) rv = RM1(sc->base_sc, sc->def->volt_reg, sc->def->volt_vsel_mask, sel); if (rv != 0) { - printf("%s: cannot set volatge selector: %d\n", + printf("%s: cannot set voltage selector: %d\n", regnode_get_name(sc->regnode), rv); return (rv); } |
