Documentation/cpu-hotplug.txt: fix a typo in example code
authorSangjung Woo <sangjung.woo@samsung.com>
Thu, 23 Jan 2014 23:55:30 +0000 (15:55 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 24 Jan 2014 00:37:01 +0000 (16:37 -0800)
As the notifier_block name (i.e.  foobar_cpu_notifer) is different from
the parameter (i.e.foobar_cpu_notifier) of register function, that is
definitely error and it also makes readers confused.

Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
Reviewed-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Documentation/cpu-hotplug.txt

index 8cb9938cc47e8c0e3d0202786bd9c434f96cbd4d..be675d2d15a73a4f784d7192931e187be294109d 100644 (file)
@@ -285,7 +285,7 @@ A: This is what you would need in your kernel code to receive notifications.
                return NOTIFY_OK;
        }
 
-       static struct notifier_block foobar_cpu_notifer =
+       static struct notifier_block foobar_cpu_notifier =
        {
           .notifier_call = foobar_cpu_callback,
        };