diff options
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 10 | ||||
-rw-r--r-- | include/linux/workqueue.h | 15 |
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 | ||
516 | What: cancel_rearming_delayed_work[queue]() | ||
517 | When: 2.6.39 | ||
518 | |||
519 | Why: 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. | ||
522 | Who: Tejun Heo <tj@kernel.org> | ||
523 | |||
524 | ---------------------------- | ||
525 | |||
526 | What: Legacy, non-standard chassis intrusion detection interface. | 516 | What: Legacy, non-standard chassis intrusion detection interface. |
527 | When: June 2011 | 517 | When: June 2011 |
528 | Why: The adm9240, w83792d and w83793 hardware monitoring drivers have | 518 | Why: 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() */ | ||
416 | static inline __deprecated | ||
417 | void 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() */ | ||
424 | static inline __deprecated | ||
425 | void 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 |
431 | static inline long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg) | 416 | static inline long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg) |
432 | { | 417 | { |