diff options
author | Menglong Dong <dong.menglong@zte.com.cn> | 2021-01-18 11:04:55 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2021-01-19 18:20:07 +0300 |
commit | 93e86295f5e9238779096fa599c3804a08e25bd1 (patch) | |
tree | 25d4e4dcbf3924545271f0a78bfd3bd6db331504 /include/linux/workqueue.h | |
parent | 1e2a199f6ccdc15cf111d68d212e2fd4ce65682e (diff) | |
download | linux-93e86295f5e9238779096fa599c3804a08e25bd1.tar.xz |
workqueue: fix annotation for WQ_SYSFS
'wq_sysfs_register()' in annotation for 'WQ_SYSFS' is unavailable,
change it to 'workqueue_sysfs_register()'.
Signed-off-by: Menglong Dong <dong.menglong@zte.com.cn>
Reviewed-by: Lai Jiangshan <jiangshanlai@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r-- | include/linux/workqueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 26de0cae2a0a..d15a7730ee18 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -311,7 +311,7 @@ enum { WQ_MEM_RECLAIM = 1 << 3, /* may be used for memory reclaim */ WQ_HIGHPRI = 1 << 4, /* high priority */ WQ_CPU_INTENSIVE = 1 << 5, /* cpu intensive workqueue */ - WQ_SYSFS = 1 << 6, /* visible in sysfs, see wq_sysfs_register() */ + WQ_SYSFS = 1 << 6, /* visible in sysfs, see workqueue_sysfs_register() */ /* * Per-cpu workqueues are generally preferred because they tend to |