aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2015-02-09 19:21:15 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2015-02-09 19:21:15 -0800
commit44dbf058de9f46cf112518c99bb1352e8350ceb3 (patch)
tree2984b64f9ad7f182870ef245d62cace7aea1575a /include
parentMerge branch 'for-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup (diff)
parentworkqueue.h: remove loops of single statement macros (diff)
downloadlinux-dev-44dbf058de9f46cf112518c99bb1352e8350ceb3.tar.xz
linux-dev-44dbf058de9f46cf112518c99bb1352e8350ceb3.zip
Merge branch 'for-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull workqueue changes from Tejun Heo: "One cosmetic cleanup patch" * 'for-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq: workqueue.h: remove loops of single statement macros
Diffstat (limited to 'include')
-rw-r--r--include/linux/workqueue.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index b996e6cde6bb..74db135f9957 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -220,14 +220,10 @@ static inline unsigned int work_static(struct work_struct *work) { return 0; }
#endif
#define INIT_WORK(_work, _func) \
- do { \
- __INIT_WORK((_work), (_func), 0); \
- } while (0)
+ __INIT_WORK((_work), (_func), 0)
#define INIT_WORK_ONSTACK(_work, _func) \
- do { \
- __INIT_WORK((_work), (_func), 1); \
- } while (0)
+ __INIT_WORK((_work), (_func), 1)
#define __INIT_DELAYED_WORK(_work, _func, _tflags) \
do { \