diff mbox series

[next] powercap/dtpm: Fix spelling mistake "initialze" -> "initialize"

Message ID 20220301090327.515454-1-colin.i.king@gmail.com
State Accepted
Commit 55ddcd9f3226b21c5b63d893712c85e85d73f4cb
Headers show
Series [next] powercap/dtpm: Fix spelling mistake "initialze" -> "initialize" | expand

Commit Message

Colin Ian King March 1, 2022, 9:03 a.m. UTC
There is a spelling mistake in a pr_info message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/powercap/dtpm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/powercap/dtpm.c b/drivers/powercap/dtpm.c
index ec931a06d90a..b2bcd6d1e242 100644
--- a/drivers/powercap/dtpm.c
+++ b/drivers/powercap/dtpm.c
@@ -596,7 +596,7 @@  int dtpm_create_hierarchy(struct of_device_id *dtpm_match_table)
 
 		ret = dtpm_subsys[i]->init();
 		if (ret)
-			pr_info("Failed to initialze '%s': %d",
+			pr_info("Failed to initialize '%s': %d",
 				dtpm_subsys[i]->name, ret);
 	}