aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/feature-removal-schedule.txt10
-rw-r--r--include/linux/workqueue.h15
2 files changed, 0 insertions, 25 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index f6a24e8aa11e..e472054382c3 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@ -513,16 +513,6 @@ Who: NeilBrown <neilb@suse.de>
513 513
514---------------------------- 514----------------------------
515 515
516What: cancel_rearming_delayed_work[queue]()
517When: 2.6.39
518
519Why: The functions have been superceded by cancel_delayed_work_sync()
520 quite some time ago. The conversion is trivial and there is no
521 in-kernel user left.
522Who: Tejun Heo <tj@kernel.org>
523
524----------------------------
525
526What: Legacy, non-standard chassis intrusion detection interface. 516What: Legacy, non-standard chassis intrusion detection interface.
527When: June 2011 517When: June 2011
528Why: The adm9240, w83792d and w83793 hardware monitoring drivers have 518Why: The adm9240, w83792d and w83793 hardware monitoring drivers have
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index f584aba78ca9..57b31b3d83bd 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -412,21 +412,6 @@ static inline bool __cancel_delayed_work(struct delayed_work *work)
412 return ret; 412 return ret;
413} 413}
414 414
415/* Obsolete. use cancel_delayed_work_sync() */
416static inline __deprecated
417void cancel_rearming_delayed_workqueue(struct workqueue_struct *wq,
418 struct delayed_work *work)
419{
420 cancel_delayed_work_sync(work);
421}
422
423/* Obsolete. use cancel_delayed_work_sync() */
424static inline __deprecated
425void cancel_rearming_delayed_work(struct delayed_work *work)
426{
427 cancel_delayed_work_sync(work);
428}
429
430#ifndef CONFIG_SMP 415#ifndef CONFIG_SMP
431static inline long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg) 416static inline long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
432{ 417{