From: Rolf Eike Beer Date: Tue, 3 Oct 2006 21:07:31 +0000 (+0200) Subject: remove duplicate "until" from kernel/workqueue.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9f5d785e93f7c68c37582ddea848de23689fdd76;p=linux-beck.git remove duplicate "until" from kernel/workqueue.c s/until until/until/ Signed-off-by: Rolf Eike Beer Signed-off-by: Adrian Bunk --- diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 835fe28b87a8..cfc737bffe6d 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -34,7 +34,7 @@ * possible cpu). * * The sequence counters are for flush_scheduled_work(). It wants to wait - * until until all currently-scheduled works are completed, but it doesn't + * until all currently-scheduled works are completed, but it doesn't * want to be livelocked by new, incoming ones. So it waits until * remove_sequence is >= the insert_sequence which pertained when * flush_scheduled_work() was called.