]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
call_once:: Fix typo in comment for call_once()
authorJiun Jeong <jiun.jeong.cs@gmail.com>
Fri, 1 May 2026 14:44:13 +0000 (23:44 +0900)
committerSean Christopherson <seanjc@google.com>
Tue, 26 May 2026 19:28:32 +0000 (12:28 -0700)
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>
include/linux/call_once.h

index 13cd6469e7e56edfd445376ae8963b31c9864965..1625a9d6ff5b7d3c3da5ed3565dd9444260ceeb3 100644 (file)
@@ -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.