From c4c40502363510d4179088babc327e4c904e3f79 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Tue, 4 Aug 2026 23:37:15 +0200 Subject: [PATCH] thermal/of: Fix trivial enabled typo Fix trivial typo, s@enabled@enable@. No functional change. Signed-off-by: Marek Vasut Signed-off-by: Daniel Lezcano Link: https://patch.msgid.link/20260804213738.287818-1-marek.vasut+renesas@mailbox.org --- drivers/thermal/thermal_of.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thermal/thermal_of.c b/drivers/thermal/thermal_of.c index 100fd8a0c8ce..0217a49b08ae 100644 --- a/drivers/thermal/thermal_of.c +++ b/drivers/thermal/thermal_of.c @@ -444,7 +444,7 @@ static struct thermal_zone_device *thermal_of_zone_register(struct device_node * ret = thermal_zone_device_enable(tz); if (ret) { - pr_err("Failed to enabled thermal zone '%s', id=%d: %d\n", + pr_err("Failed to enable thermal zone '%s', id=%d: %d\n", tz->type, tz->id, ret); thermal_of_zone_unregister(tz); return ERR_PTR(ret);