diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2018-07-23 11:31:59 +0300 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2018-09-26 12:21:00 +0300 |
commit | ca9184f0797c4893db928527fb2b6999eb753ccb (patch) | |
tree | 7b3f315700e248c16e40d22830ff20b2cb4b2e62 /kernel/trace | |
parent | ff0e9f26288d2daee4950f42b37a3d3d30d36ec1 (diff) | |
download | linux-ca9184f0797c4893db928527fb2b6999eb753ccb.tar.gz linux-ca9184f0797c4893db928527fb2b6999eb753ccb.tar.bz2 linux-ca9184f0797c4893db928527fb2b6999eb753ccb.zip |
tracing: Trivia spelling fix containerof() -> container_of()
This is the only location on kernel that has wrong spelling
of the container_of() helper. Fix it.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/trace_printk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_printk.c b/kernel/trace/trace_printk.c index b0875b327f5c..c3fd849d4a8f 100644 --- a/kernel/trace/trace_printk.c +++ b/kernel/trace/trace_printk.c @@ -115,7 +115,7 @@ static int module_trace_bprintk_format_notify(struct notifier_block *self, * section, then we need to read the link list pointers. The trick is * we pass the address of the string to the seq function just like * we do for the kernel core formats. To get back the structure that - * holds the format, we simply use containerof() and then go to the + * holds the format, we simply use container_of() and then go to the * next format in the list. */ static const char ** |