]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
timer_list-convert-timer-list-to-be-a-proper-seq_file-v3-fix
authorAndrew Morton <akpm@linux-foundation.org>
Wed, 20 Mar 2013 04:06:55 +0000 (15:06 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 21 Mar 2013 05:27:15 +0000 (16:27 +1100)
fix comment typos, per Stephen

Cc: Dave Jones <davej@redhat.com>
Cc: John Stultz <johnstul@us.ibm.com>
Cc: Nathan Zimmer <nzimmer@sgi.com>
Cc: Stephen Boyd <sboyd@codeaurora.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
kernel/time/timer_list.c

index 93f2e0f40b7a29f85ce3ccbe449ab8f19f62da7a..7ccf16f0bcbc3bf76997cdce0ebfeb83aa7829e1 100644 (file)
@@ -274,15 +274,15 @@ static int timer_list_show(struct seq_file *m, void *v)
 }
 
 /*
- * This itererator really needs some explanation since it is offset and has
+ * This iterator really needs some explanation since it is offset and has
  * two passes, one of which is controlled by a config option.
- * In hotpluggable systems some cpus, including cpu 0 and the last cpu, may
+ * In hotpluggable systems some cpus, including cpu 0 and the last cpu, may
  * be missing so we have to use cpumask_* to iterate over the cpus.
  * For the first pass:
  * It returns 1 for the header position.
  * For cpu 0 it returns 2 and the final possible cpu would be nr_cpu_ids + 1.
  * On the second pass:
- * It returnes nr_cpu_ids + 1 for the second header position.
+ * It returns nr_cpu_ids + 1 for the second header position.
  * For cpu 0 it returns nr_cpu_ids + 2
  * The final possible cpu would be nr_cpu_ids + nr_cpu_ids + 2.
  * It is also important to remember that cpumask_next returns >= nr_cpu_ids if