aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/jump_label.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/jump_label.h b/include/linux/jump_label.h
index e0340ca08d98..b6a29c126cc4 100644
--- a/include/linux/jump_label.h
+++ b/include/linux/jump_label.h
@@ -393,7 +393,7 @@ extern bool ____wrong_branch_error(void);
393 branch = !arch_static_branch_jump(&(x)->key, true); \ 393 branch = !arch_static_branch_jump(&(x)->key, true); \
394 else \ 394 else \
395 branch = ____wrong_branch_error(); \ 395 branch = ____wrong_branch_error(); \
396 branch; \ 396 likely(branch); \
397}) 397})
398 398
399#define static_branch_unlikely(x) \ 399#define static_branch_unlikely(x) \
@@ -405,7 +405,7 @@ extern bool ____wrong_branch_error(void);
405 branch = arch_static_branch(&(x)->key, false); \ 405 branch = arch_static_branch(&(x)->key, false); \
406 else \ 406 else \
407 branch = ____wrong_branch_error(); \ 407 branch = ____wrong_branch_error(); \
408 branch; \ 408 unlikely(branch); \
409}) 409})
410 410
411#else /* !HAVE_JUMP_LABEL */ 411#else /* !HAVE_JUMP_LABEL */