summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorJiun Jeong <jiun.jeong.cs@gmail.com>2026-05-01 17:44:13 +0300
committerSean Christopherson <seanjc@google.com>2026-05-26 22:28:32 +0300
commit5804f58901af77ab507e199d31dfa263404e177c (patch)
tree7a85c8f38db300b3b2f7fbe15e09adfd15486eca /include/linux
parentccd6c77223bbdea352190956f5e00e3b07119fc3 (diff)
downloadlinux-5804f58901af77ab507e199d31dfa263404e177c.tar.xz
call_once:: Fix typo in comment for call_once()
Change "succesfully" to "successfully" in the kerneldoc comment of call_once(). Signed-off-by: Jiun Jeong <jiun.jeong.cs@gmail.com> Link: https://patch.msgid.link/20260501144413.49419-1-jiun.jeong.cs@gmail.com [sean: don't scope to KVM, massage changelog] Signed-off-by: Sean Christopherson <seanjc@google.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/call_once.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/call_once.h b/include/linux/call_once.h
index 13cd6469e7e5..1625a9d6ff5b 100644
--- a/include/linux/call_once.h
+++ b/include/linux/call_once.h
@@ -36,7 +36,7 @@ do { \
* it returns a zero or positive value, mark @once as completed. Return
* the value returned by @cb
*
- * If @once has completed succesfully before, return 0.
+ * If @once has completed successfully before, return 0.
*
* The call to @cb is implicitly surrounded by a mutex, though for
* efficiency the * function avoids taking it after the first call.