workqueue: Make workqueue_init*() return void

The return values of workqueue_init() and workqueue_early_int() are
always 0, and there is no usage of their return value.  So just make
them return void.

Signed-off-by: Yu Chen <chen.yu@easystack.cn>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Yu Chen
2020-02-23 15:28:52 +08:00
committed by Tejun Heo
parent 8b614cb8f1
commit 2333e82995
2 changed files with 4 additions and 8 deletions

View File

@@ -649,7 +649,7 @@ int workqueue_online_cpu(unsigned int cpu);
int workqueue_offline_cpu(unsigned int cpu);
#endif
int __init workqueue_init_early(void);
int __init workqueue_init(void);
void __init workqueue_init_early(void);
void __init workqueue_init(void);
#endif