diff options
-rw-r--r-- | include/linux/workqueue.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 594521ba0d43..edc941049d79 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
@@ -605,21 +605,6 @@ static inline bool keventd_up(void) | |||
605 | return system_wq != NULL; | 605 | return system_wq != NULL; |
606 | } | 606 | } |
607 | 607 | ||
608 | /* | ||
609 | * Like above, but uses del_timer() instead of del_timer_sync(). This means, | ||
610 | * if it returns 0 the timer function may be running and the queueing is in | ||
611 | * progress. | ||
612 | */ | ||
613 | static inline bool __deprecated __cancel_delayed_work(struct delayed_work *work) | ||
614 | { | ||
615 | bool ret; | ||
616 | |||
617 | ret = del_timer(&work->timer); | ||
618 | if (ret) | ||
619 | work_clear_pending(&work->work); | ||
620 | return ret; | ||
621 | } | ||
622 | |||
623 | /* used to be different but now identical to flush_work(), deprecated */ | 608 | /* used to be different but now identical to flush_work(), deprecated */ |
624 | static inline bool __deprecated flush_work_sync(struct work_struct *work) | 609 | static inline bool __deprecated flush_work_sync(struct work_struct *work) |
625 | { | 610 | { |