From: Steven Rostedt (VMware) Date: Fri, 29 Oct 2021 13:54:14 +0000 (-0400) Subject: tracing: Fix misspelling of "missing" X-Git-Tag: v5.15~11^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ddcf906fe5ed842034b2d995064c1de1dcc7e812;p=platform%2Fkernel%2Flinux-starfive.git tracing: Fix misspelling of "missing" My snake instinct was on and I wrote "misssing" instead of "missing". Signed-off-by: Steven Rostedt (VMware) --- diff --git a/kernel/trace/trace_eprobe.c b/kernel/trace/trace_eprobe.c index 5c5f208..928867f 100644 --- a/kernel/trace/trace_eprobe.c +++ b/kernel/trace/trace_eprobe.c @@ -904,7 +904,7 @@ static int __trace_eprobe_create(int argc, const char *argv[]) if (IS_ERR(ep)) { ret = PTR_ERR(ep); - /* This must return -ENOMEM or misssing event, else there is a bug */ + /* This must return -ENOMEM or missing event, else there is a bug */ WARN_ON_ONCE(ret != -ENOMEM && ret != -ENODEV); ep = NULL; goto error;