diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-14 00:58:06 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-05-14 13:11:41 -0400 |
commit | cf416171e7e1d966111f53bdae82f51af05e7bf8 (patch) | |
tree | 9f0dc7a33b8ba7cbb226e09065ad829ed7737626 | |
parent | 1a56f2aa4752293e5a9c0c3a2331620aa1fdb808 (diff) |
workqueue: Remove deprecated system_nrt[_freezable]_wq
system_nrt[_freezable]_wq were deprecated by 3b07e9c ("workqueue:
deprecate system_nrt[_freezable]_wq") and have been deprecated
for a long time. In addition, these are not used anymore. So,
let's remove these functions.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r-- | include/linux/workqueue.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index aa92d0295e28..d93d28b2ec73 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
@@ -364,20 +364,6 @@ extern struct workqueue_struct *system_freezable_wq; | |||
364 | extern struct workqueue_struct *system_power_efficient_wq; | 364 | extern struct workqueue_struct *system_power_efficient_wq; |
365 | extern struct workqueue_struct *system_freezable_power_efficient_wq; | 365 | extern struct workqueue_struct *system_freezable_power_efficient_wq; |
366 | 366 | ||
367 | static inline struct workqueue_struct * __deprecated __system_nrt_wq(void) | ||
368 | { | ||
369 | return system_wq; | ||
370 | } | ||
371 | |||
372 | static inline struct workqueue_struct * __deprecated __system_nrt_freezable_wq(void) | ||
373 | { | ||
374 | return system_freezable_wq; | ||
375 | } | ||
376 | |||
377 | /* equivlalent to system_wq and system_freezable_wq, deprecated */ | ||
378 | #define system_nrt_wq __system_nrt_wq() | ||
379 | #define system_nrt_freezable_wq __system_nrt_freezable_wq() | ||
380 | |||
381 | extern struct workqueue_struct * | 367 | extern struct workqueue_struct * |
382 | __alloc_workqueue_key(const char *fmt, unsigned int flags, int max_active, | 368 | __alloc_workqueue_key(const char *fmt, unsigned int flags, int max_active, |
383 | struct lock_class_key *key, const char *lock_name, ...) __printf(1, 6); | 369 | struct lock_class_key *key, const char *lock_name, ...) __printf(1, 6); |