summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@linux.dev>2025-11-22 12:48:04 +0100
committerJulia Lawall <Julia.Lawall@inria.fr>2025-12-21 21:04:52 +0100
commit52ad85fd33a72c47877384fcf605e0bdb2ad1848 (patch)
tree664f2969b8e94d1dd335fd1cabeb0085d13b5a48
parent3766511de1ce62472898d0ffafeb2551c880b161 (diff)
Coccinelle: pm_runtime: Fix typo in report message
s/Unecessary/Unnecessary/ Reviewed-by: Julia Lawall <julia.lawall@inria.fr> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
-rw-r--r--scripts/coccinelle/api/pm_runtime.cocci2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/coccinelle/api/pm_runtime.cocci b/scripts/coccinelle/api/pm_runtime.cocci
index bf128ccae921..b720489418fa 100644
--- a/scripts/coccinelle/api/pm_runtime.cocci
+++ b/scripts/coccinelle/api/pm_runtime.cocci
@@ -109,5 +109,5 @@ p2 << r.p2;
pm_runtime_api << r.pm_runtime_api;
@@
-msg = "%s returns < 0 as error. Unecessary IS_ERR_VALUE at line %s" % (pm_runtime_api, p2[0].line)
+msg = "%s returns < 0 as error. Unnecessary IS_ERR_VALUE at line %s" % (pm_runtime_api, p2[0].line)
coccilib.report.print_report(p1[0],msg)