]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
thermal/drivers/rcar_gen3: Fix comment typo
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sun, 7 Sep 2025 15:41:38 +0000 (17:41 +0200)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Thu, 25 Sep 2025 20:10:59 +0000 (22:10 +0200)
Fix typo to millidegree Celsius. This aligns the comment with
another comment later on the same function. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Link: https://lore.kernel.org/r/20250907154148.171496-1-marek.vasut+renesas@mailbox.org
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/thermal/renesas/rcar_gen3_thermal.c

index 01858e72f4e0ab07766c5f7acaf0444e904c765c..e4201098556b287857e1e9ae4794251f525b182c 100644 (file)
@@ -171,7 +171,7 @@ static int rcar_gen3_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
        const struct equation_set_coef *coef;
        int adj, decicelsius, reg, thcode;
 
-       /* Read register and convert to mili Celsius */
+       /* Read register and convert to millidegree Celsius */
        reg = rcar_gen3_thermal_read(tsc, REG_GEN3_TEMP) & CTEMP_MASK;
 
        if (reg < tsc->thcode[1]) {