diff options
Diffstat (limited to 'include/linux/sched/smt.h')
-rw-r--r-- | include/linux/sched/smt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched/smt.h b/include/linux/sched/smt.h index 59d3736c454c..166b19af956f 100644 --- a/include/linux/sched/smt.h +++ b/include/linux/sched/smt.h @@ -12,9 +12,9 @@ static __always_inline bool sched_smt_active(void) return static_branch_likely(&sched_smt_present); } #else -static inline bool sched_smt_active(void) { return false; } +static __always_inline bool sched_smt_active(void) { return false; } #endif void arch_smt_update(void); -#endif +#endif /* _LINUX_SCHED_SMT_H */ |