time: Delete repeated words in comments

Drop repeated words in kernel/time/. {when, one, into}

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: John Stultz <john.stultz@linaro.org>
Link: https://lore.kernel.org/r/20200807033248.8452-1-rdunlap@infradead.org

authored by Randy Dunlap and committed by Thomas Gleixner b0294f30 d60d7de3

Changed files
+3 -3
kernel
+1 -1
kernel/time/alarmtimer.c
··· 192 192 * When a alarm timer fires, this runs through the timerqueue to 193 193 * see which alarms expired, and runs those. If there are more alarm 194 194 * timers queued for the future, we set the hrtimer to fire when 195 - * when the next future alarm timer expires. 195 + * the next future alarm timer expires. 196 196 */ 197 197 static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer) 198 198 {
+1 -1
kernel/time/sched_clock.c
··· 229 229 { 230 230 /* 231 231 * If no sched_clock() function has been provided at that point, 232 - * make it the final one one. 232 + * make it the final one. 233 233 */ 234 234 if (cd.actual_read_sched_clock == jiffy_sched_clock_read) 235 235 sched_clock_register(jiffy_sched_clock_read, BITS_PER_LONG, HZ);
+1 -1
kernel/time/timekeeping.c
··· 2001 2001 * logarithmic_accumulation - shifted accumulation of cycles 2002 2002 * 2003 2003 * This functions accumulates a shifted interval of cycles into 2004 - * into a shifted interval nanoseconds. Allows for O(log) accumulation 2004 + * a shifted interval nanoseconds. Allows for O(log) accumulation 2005 2005 * loop. 2006 2006 * 2007 2007 * Returns the unconsumed cycles.